@font-face {
    font-family: "ReadyClouded-Light";
    src:
        url("../../fontes/ReadyClouded-Light.woff") format("woff");
    font-weight: 400;
}

@font-face {
    font-family: "Inferi-Normal";
    src:
        url("../../fontes/Inferi-Normal.woff") format("woff");
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1;
}

body {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    font-family: 'Inferi-Normal';
    font-size: 24px;
    padding: 2vw;
    gap: 2em;
}

div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.logo {
    height: 60vh;
    margin-top: -4vh;

}

h2 {
    font-family: 'Inferi-Normal';
    font-weight: 400;
    font-size: 1em;
    margin-bottom: 1em;
    text-align: center;
    line-height: 1.3;
}

a,
a:link,
a:visited,
a:focus,
a:hover,
a:active {
    /* text-decoration: underline 0.5px solid white;
    text-underline-offset: 0.1em; */
    display: block;
    text-decoration: none;
    background-color: #000000;
    border: 1px solid white;
    border-radius: .2em;
    padding: .5em 1em;
    text-align: center;
    color: inherit;
}

a:focus,
a:hover,
a:active {
    background-color: white;
    color: black;
}

li::first-letter {
    font-family: 'ReadyClouded-Light';
    font-size: 130%;
}

ul {
    display: flex;
    flex-direction: row;
    gap: 2em;
    list-style-type: none;
    justify-content: center;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    body {
        font-size: 20px;
        padding: 10vw;
        gap: unset;
        justify-content: space-between;
    }

    ul {
        flex-direction: column;
        gap: .5em;
    }

    div {
        align-items: stretch;
    }

    .logo {
        height: auto;
        width: 80vw;
        margin-top: -4vw;
    }
}