@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap");

body {
    font-family: "Google Sans Flex", sans-serif;
    background: #000000;
    margin: 0;
    padding: 0;
}

small {
    color: #858585;
}

@media (max-width: 600px) {
    .navbar {
        padding: 10px 14px;
    }

    .hero h2 {
        font-size: 1.1rem;
        text-align: center;
    }

    .hero small {
        text-align: center;
    }

    .button_container {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .button, .discord {
        width: 100%;
        justify-content: center;
    }
}

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
}

.container {
    font-family: inherit;
    height: 100vh;
    color: #fff;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero {
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero h2 {
    margin: 0;
}

.button_container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.button {
    background-color: #050505;
    font-family: inherit;
    color:#fff;
    font-size: medium;
    font-weight: lighter;
    padding: 10px;
    border: none;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    transition: background ease 0.6s;
}

.button svg {
    width: 25px;
    height: 25px;
}

.button:hover {
    background-color: #090909;
    cursor: pointer;
}

.button:disabled {
    background-color: #030303;
    color: #858585;
    pointer-events: none;
}

.discord {
    background-color: #4439d3;
    font-family: inherit;
    color:#fff;
    font-size: medium;
    font-weight: lighter;
    padding: 10px;
    border: none;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    transition: background ease 0.6s;
}

.discord svg {
    width: 25px;
    height: 25px;
}

.discord:hover {
    background-color: #2f279e;
    cursor: pointer;
}


