@import url('https://fonts.googleapis.com/css?family=Exo:400,700');

*{
    margin: 0px;
    padding: 0px;
}

.area{
    user-select: none;
    background: #282c34bd;  
    width: 100%;
    height:100vh; 
}

.circles{
    user-select: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    user-select: none;
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 0%;
    }

}














html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #222333; 
    color: #ffffff; 
    /* max-height: 100vh; */
    overflow-y: hidden; /* Hide vertical scrollbar */  
    justify-content: center;
    align-items: center;
}

body {
    /* display: flex;
    flex-direction: column; */
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: space-between; 
    align-items: stretch; 
    width: calc(100% - 1cm); 
    height: calc(80% - 1cm); 
    margin: 0.5cm; 
    padding: 0.5cm; 
    gap: 0.5cm; 
    box-sizing: border-box; 
    min-width: 94%;
}

.half {
    display: flex;
    position: fixed;
    right: -20%;
    top: 10%;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.1;
  }


.content {
    position: relative;
    top: 30%;
    text-align: center;
  }

footer {
    text-align: center;
    width: 100%;
    color: #ffffff;
    position: absolute;
    bottom: 0;
  }

.cta {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
        margin: 0.5cm;
    }
    .half {
        width: auto; 
        height: auto; 
        margin: 0.5cm; 
    }
}
