@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: white;
}

:root {
    --background-hover-color: rgb(33, 33, 33, 1);
}

body {
    padding: 0 25px;
    background: #000;
    font-family: "Roboto", sans-serif;
    color: white;
}

.body-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1800px;
    max-height: 100vh;
}


/* HEADER */

header {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header > .left {
    display: flex;
    align-items: center;
    gap: 20px;
}

header > .left > a > .logo > p {
    font-size: 28px;
    font-weight: 800;
    color: white;
}

header > .left > nav > ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

header > .left > nav > ul > li > .nav-link {
    padding: 4px 10px;
    border-radius: 8px;
    cursor: pointer;
}

header > .left > nav > ul > li > .nav-link > a {
    font-size: 14px;
    font-weight: 600;
}

header > .left > nav > ul > li > .nav-link:hover {
    background-color: #2B4C87
}

.button {
    background-color: #ffffff00;
    color: #fff;
    width: 18.5em;
    height: 2.9em;
    border: #2B4C87 0.2em solid;
    border-radius: 11px;
    text-align: right;
    transition: all 0.6s ease;
}

.button:hover {
    background-color: #2B4C87;
    cursor: pointer;
}

.button svg {
    width: 1.6em;
    margin: -0.2em 0.8em 1em;
    position: absolute;
    display: flex;
    transition: all 0.6s ease;
}

.button:hover svg {
    transform: translateX(5px);
}

.text {
    margin: 0 1.5em
}


/* MAIN */

main {
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main > .texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

main > .texts > .large-container,
main > .texts > .small-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main > .texts > .large-container > .large-text,
main > .texts > .small-container > .small-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

main > .texts > .large-container > .large-text > p {
    font-size: 110px;
    font-weight: 900;
}

main > .texts > .small-container > .small-text {
    max-width: 670px;
}

main > .texts > .small-container > .small-text > p {
    font-size: 13px;
    font-weight: 300;
    color: #aaaaaa;
}


.animation > p {
    margin-top: 40px;
    font-size: 25px;
    font-weight: 300;
    color: azure;
    animation: moveAndColor 1s linear infinite;
}

@keyframes moveAndColor {
    0% {
        color: rgb(185, 185, 185);
        transform: translateY(0);
    }
    50% {
        color: rgb(80, 80, 80);
        transform: translateY(10px);
    }
    100% {
        color: rgb(44, 44, 44);
        transform: translateY(0);
    }
}

main > .texts > .small-container > .token-text {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main > .texts > .small-container > .token-text > svg {
    height: 10px;
    margin-top: 10px;
}

main > .texts > .small-container > .token-text > p {
    margin-top: 10px;
    color: #aaaaaa;
    font-size: 11px;
    width: 400px;
    text-align: center;
}

.form-control {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-control > .token-entrance {
    width: 250px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #252525;
    border: 1px solid #252525;
}

.form-control > .token-entrance:focus-within {
    border: 1px solid white;
}

.form-control > .token-entrance > input {
    width: 70%;
    border: none;
    outline: none;
    border-radius: 8px;
    background: #252525;
    text-align: center;
    color: white;
    padding: 0 5px;
}

.form-control > .token-entrance > button {
    width: 30%;
    border: none;
    outline: none;
    border-radius: 8px;
    margin: 3px;
    background: #000000;
    cursor: pointer;
}

.form-control > .token-entrance > button:hover {
    background: #2B4C87;
}

.form-control > a > .demo {
    padding: 10px;
    width: 250px;
    border-radius: 8px;
    background-color: #252525;
}

.form-control > a > .demo:hover {
    background-color: #2B4C87;
}

.form-control > a > .demo > p {
    font-size: 13px;
    text-align: center;
    font-weight: 500;
}

.error-message {
    background-color: #553838;
    margin-top: 20px;
    width: 250px;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.error-message > p {
    color: #eae0e0;
    font-size: 13px;
}
