@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    background-color: #151719;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    width: 200px;
    height: auto;
}

.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}

.active {
    color: #00bcff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__links {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 2px;
    background: #0045ff;
    color: white;
    font-size: 16px;
}

.button:hover {
    opacity: 0.8;
}

.navbar__links:hover {
    color: #0045ff;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
    .navbar {
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
        position: sticky;
        top: 0;
        z-index: 999;
    }
    
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        height: 50vh;
        z-index: -1;
        background-color: #151719;
    }

    .navbar__menu.active {
        background: #151719;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #ffffff;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        height: 50px;
        margin: 0;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.main {
    font-size: 2rem;
    color: white;
    text-align: center;
    display: block;
}

.main__container {
    animation: 1s ease 0s 1 top_bottom;
    align-items: center;
    justify-self: center;
    margin: 100px auto;
    height: 90vh;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
}

.main__content .main__color {
    font-size: 4rem;
    background-color: #00bcff;
    background-image: linear-gradient(to top, #0045ff 0%, #00bcff);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content p {
    margin-top: 20px;
    font-weight: 400;
    font-size: 1.5rem;
    color: gray;
}

.main__button {
    display: inline-flex;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -.1px;
    font-weight: 600;
    padding: 11px 31px;
    height: 48px;
    text-decoration: none!important;
    color: white;
    background-color: #0045ff;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    justify-content: center;
    text-align: center;
    letter-spacing: inherit;
    white-space: nowrap;
    margin-top: 25px;
}

.secondary {
    color: #eceded;
    background-color: #25282c;
}

.main__button:hover {
    opacity: 0.8;
}

.main__discord {
    animation: 1s ease 0s 1 left_right;
    margin-top: 50px;
}

@keyframes top_bottom {
    0% {transform: translateY(-100%)}
    100% {transform: translateY(0)}
}

@keyframes left_right {
    0% {transform: translateX(-100%)}
    100% {transform: translateX(0)}
}



* {
    scrollbar-width: auto;
    scrollbar-color: #009dff none;
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: none;
}

*::-webkit-scrollbar-thumb {
    background-color: #009dff;
    border-radius: 28px;
    border: 3px solid none;
}