@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

.root {
    --primary-color: #F72585;
    --secondary-color: #B5179E;
    --terturiy-color: #7209B7;
    --fourth-color: #560BAD;
    --fifth-color: #480CA8;
    --sixth-color: #3A0CA3;
    --seventh-color: #3F37C9;
    --eighth-color: #4361EE;
    --nineth-color: #4895EF;
    --tenth-color: #4CC9F0;
}

.primary-c {
    color: var(--primary-color);
}

.second-c {
    color: var(--secondary-color);
}

.tired-c {
    color: var(--sixth-color);
}

.fourth-c {
    color: var(--seventh-color);
}

.raleway-light {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
}

/* Raleway Font - Normal Weight and Regular Width */
.raleway-normal {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Raleway Font - Bold Weight and Condensed Width */
.raleway-bold-Condensed {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    /* Bold weight */
    font-style: normal;
    /* Regular style */
    font-variation-settings: "wdth" 75;
    /* Condensed width (100 is normal, 75 is more condensed) */
}

.raleway-bold {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    /* Bold weight */
}

/* Nunito Font - Normal Weight and Regular Width */
.nunito-normal {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    /* Normal weight */
    font-style: normal;
    /* Regular style */
}

/* Nunito Font - Bold Weight and Expanded Width */
.nunito-bold-Expanded {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    /* Bold weight */
    font-style: normal;
    /* Regular style */
    font-variation-settings: "wdth" 125;
    /* Expanded width (100 is normal, 125 is more expanded) */
}

/* Open Sans Font - Light Weight and Condensed Width */
.open-sans-light {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    /* Light weight */
    font-style: normal;
    /* Regular style */
    font-variation-settings: "wdth" 75;
    /* Condensed width */
}

/* Open Sans Font - Bold Weight and Normal Width */
.open-sans-bold {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    /* Bold weight */
    font-style: normal;
    /* Regular style */
    font-variation-settings: "wdth" 100;
    /* Normal width */
}

.open-sans-normal {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    /* Bold weight */
    font-style: normal;
    /* Regular style */
    font-variation-settings: "wdth" 100;
    /* Normal width */
}

/* Open Sans Font - Italic Style */
.open-sans-italic {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    /* Normal weight */
    font-style: italic;
    /* Italic style */
    font-variation-settings: "wdth" 100;
    /* Normal width */
}

.bgm {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}


.counter dd {
    transition: all 1.5s ease-out;
}

.bgb {
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(9.5px);
    -webkit-backdrop-filter: blur(9.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

@layer utilities {
    @keyframes gradientChange {
        0% {
            background-position: 0%
        }

        50% {
            background-position: 100%
        }

        100% {
            background-position: 0%
        }
    }

    .gradient {
        background: linear-gradient(90deg, blue, red);
        background-size: 200% 200%;
    }

    .element-to-rotate {
        animation: gradientChange 4s ease infinite;
    }
}

.side-nav {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    right: -50px;
    top: 300px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
}

.bottom-nav {
    position: fixed;
    padding: 8px;
    border-radius: 10px;
    right: 5rem;
    bottom: 5rem;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bottom-nav a:hover {
    opacity: 0.8;
    transform: scale(1.1);
}


#sidebar{
    z-index: 1000;
}

@keyframes marquee {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  .marquee-animation {
    animation: marquee 10s linear infinite;
  }
