
@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');



* {
    margin: 0;
    padding: 0;
}


/* 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(186, 139, 247, 0.842);
    --white-alpha-25: rgba(217, 171, 244, 0.89);
    --backdrop-filter-blur: blur(5px);
}



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;
}

body.hide-scrolling {
    overflow-y: hidden;
}

/*----------------------
Custom Scrollbar 
------------------------*/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: rgb(103, 52, 169);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(184, 138, 237);
}

/*----------------------
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(156, 111, 234, 0.877);
    left: 60%;
    top: 91%;
    opacity: 0.2;
    animation: zoomInOut 2s ease-in-out infinite;
}




.section-1 {
    max-width: 1040px;
    margin: auto;
    margin-top: 60px;
    /* margin-bottom: 200px; */
    position: relative;
    padding-top: 10px;
}

.section-1-header {
    max-height: 70px;
    display: flex;
    justify-content: space-between;
    color: rgb(6, 6, 6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 20px;
    background-color: rgba(201, 199, 199, 0.2);
    /* Adjust the last value (alpha) to control transparency */
    z-index: 210;
}

.section-1-header-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Comfortaa', cursive;
    margin-left: 5px;
    font-weight: 600;
}

.section-1-header-logo img {
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(99, 208, 225, 0.3);
    /* drop shadow effect */
}

.section-1-header-options {
    font-family: 'Alata', sans-serif;
    display: flex;
    align-items: center;
}


.section-1-header-options div a {
    text-decoration: none;
    opacity: .8;
    font-size: 18px;
    line-height: 36px;
    white-space: nowrap;
    margin: 0 20px 0 36px;
    color: rgb(8, 7, 7);
    font-family: 'Alata', sans-serif;
    transition: 0.3s ease;
}
.section-1-header-options div a:hover {
    color: rgb(7, 7, 7);
    letter-spacing: 3px;
    cursor: pointer;
}
.container {
    background-color: rgba(243, 242, 242, 0.582);
    max-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.small-container {
    background-color: #e0ccfb;
    height: 30rem;
    width: 80%;
    position: absolute;
    top: 11rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.5px solid gray;
    border-radius: 29px;
    box-shadow: 0px 0px 37px 14px lightgray;
    
}

.container-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding: 4px 4px;
    margin: 2px 2px;
}
.ele-1{
    background-color: black;
    text-decoration: none;
    color: white;
    padding: 19px 80px;
    margin: 2px 2px;
    text-align: center;
    border-radius: 11px;
    box-shadow: 0px 0px 23px 8px rgb(205, 204, 204);
}
.ele-1:hover{
    background-color: white;
    color: black;
    letter-spacing: 1px;
    box-shadow: 0px 0px 23px 8px gray;
}
.ele-2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background-color: black;
    text-decoration: none;
    color: white;
    padding: 15px 60px;
    margin: 2px 2px;
    text-align: center;
    border-radius: 11px;
    box-shadow: 0px 0px 23px 8px rgb(205, 204, 204);
}
.ele-2:hover{
    background-color: white;
    color: black;
    letter-spacing: 1px;
    box-shadow: 0px 0px 23px 8px gray;
}

.ele-2 small{
    font-size: 10px;
}