@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&family=Comfortaa&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200&family=Montserrat:wght@200;300&family=Poppins&display=swap');



/* font-family: 'Alata', sans-serif; */
/* font-family: 'Comfortaa', cursive; */




:root {
    --main-color: #9f8ddf;
    --blue: #c8a7f6;
    --blue-dark: #1f2f42;
    --orange: #ac8ce6;
    --green-yellow: #3e3e3d;
    --pink-light: #845aa8;
    --cyan-light: #948fe6;
    --white: #8567ac;
    --white-alpha-40: rgba(201, 161, 252, 0.4);
    --white-alpha-25: rgba(233, 184, 184, 0.25);
    --backdrop-filter-blur: blur(5px);
}



*{
    margin: 0;
    padding: 0;
}
body{
     /* background:  linear-gradient(to bottom right,rgb(8, 8, 8), var(--cyan-light)); */
     color: hsl(0, 4%, 5%);
     overflow-x: hidden;
     -webkit-tap-highlight-color: transparent;
     padding: 35px 15px;
     font-family: 'Alata', sans-serif;
     scroll-behavior: smooth;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }
 
 body.hide-scrolling {
     overflow-y: hidden;
 }

 .container{
    z-index: 100;
    display: flex;
    position: absolute;
    top: 30%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    border: 1px solid white;
    padding: 50px 28px;
    box-shadow: 0px 0px 10px #8d89894d;
    border-radius: 22px;
    gap: 70px;
    background-color: transparent;
    backdrop-filter: blur(10px);
 }
 
 .btnn{
    padding: 21px 32px;
    float: right;
    background: black;
    color: white;
    border-radius: 22px;
    text-decoration: none;
  }

  
/*----------------------
Animation Keyframes
------------------------*/
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(0.5);
    }

    50% {
        transform: scale(1);
    }
}

@keyframes bounceTop {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(0px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*----------------------
Background Circles
-----------------------*/
.bg-circles {
    position: fixed;
    top: 0;
    height: 100%;
    max-width: 1200px;
    width: calc(100% - 30px);
    left: 50%;
    transform: translateX(-50%);
}

.bg-circles div {
    position: absolute;
    border-radius: 50%;
}

.bg-circles .circle-1 {
    height: 60px;
    width: 60px;
    background-color: var(--blue);
    left: 5%;
    top: 10%;
    opacity: 0.3;
    animation: zoomInOut 4s linear infinite;

}

.bg-circles .circle-2 {
    height: 80px;
    width: 80px;
    background-color: var(--main-color);
    left: 30%;
    top: 50%;
    opacity: 0.4;
    animation: bounceTop 2s ease-in-out infinite;
}

.bg-circles .circle-3 {
    height: 120px;
    width: 120px;
    background-color: var(--white);
    top: 40%;
    right: -60px;
    opacity: 0.3;
    animation: bounceTop 2s ease-in-out infinite;
}

.bg-circles .circle-4 {
    height: 50px;
    width: 50px;
    background-color: var(--orange);
    top: 80%;
    left: -30px;
    opacity: 0.6;
    animation: zoomInOut 4s linear infinite;
}

.bg-circles .circle-5 {
    height: 70px;
    width: 70px;
    background-color: rgb(141, 118, 224);
    left: 80%;
    top: 4.5%;
    opacity: 0.2;
    animation: bounceTop 2s ease-in-out infinite;
}

.bg-circles .circle-6 {
    height: 50px;
    width: 50px;
    background-color: rgba(36, 21, 45, 0.158);
    left: 60%;
    top: 91%;
    opacity: 0.2;
    animation: zoomInOut 2s ease-in-out infinite;
}
