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

/* Zerando CSS */

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


/* Fundo-tela */

html {
    width: 100vw;
    height: 100vh;
    font-size: 62.5%;
    color: white;
    font-family: 'Lato', sans-serif;
}

body {
    background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(20, 20, 20, 1)), url(PUBLIC_HTML/LOGOACADEMIAXPLOUD.png);
    background-position: center center;
    background-size: cover;
    background-position-y: 0px;
    background-repeat: no-repeat;
}

/* Menu - Header - NavBar */

header {
    width: 100%;
    height: 7vh;
    background-color: rgba(22, 22, 22, 0.2);
}

.menu-content {
    text-transform: uppercase;
    height: 100%;
    display: inline;
    justify-content: space-around;
    align-items: center;
    font-size: 1.8rem;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 0.4rem;
    cursor: pointer;
}

.menu-content .list-itens {
    display: flex;
    list-style: none;
    gap: 10px;
}

.menu-content .list-itens a {
    text-decoration: none;
    color: white;
    padding: 1.5rem;
    transform: 2ms ease-in;
    position: relative;
}


.menu-content .list-itens a:before {
    content: ' ';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0px;
    height: 1px;
    background-color: rgb(255, 0, 0);
    transition: all 1.5s ease; 
}

.menu-content .list-itens a:hover:before {
    width: 100%;
}

/* Centro - Conteudo Principal */

main {
    height: 93vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Textos conteudo principal */

.primary-text {
    width: 850px;
    font-size: 5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.second-text {
    margin-bottom: 7rem;
    font-size: 2rem;
    color: rgb(165, 165, 165);
    text-transform: uppercase;
}

/* Botões */


.btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btns button {
    width: 250px;
    height: 60px;
    cursor: pointer;
    border: 1px solid white;
    color: white;
    text-transform: uppercase;
    background-color: transparent;
    font-weight: bold;
    letter-spacing: 0.2rem;
    border-radius: 20px;
    position: relative;
    transition: 1.5s;
}

.btns button:hover {
    color: rgb(255, 0, 0);
    border: none;
}

.btns button:before {
    content: ' ';
    border-radius: 20px;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 0;
    height: 60px;
    background-color: rgb(61, 61, 61);
    z-index: -1;
    transition: 1s;
}

.btns button:hover:before {
    width: 100%;
}
@media only screen and (max-width: 600px ) {

    .html {
    width: 200vw;
    height: 200vh;
    font-size: 65%;
    color: white;
    font-family: 'Lato', sans-serif;
}
    .primary-text {
        width: 350px;
        height: 250px;
        font-size: 5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .menu-content .list-itens {
        display:flex;
        list-style-position: outside;
        gap: 10px;
        padding: 0.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    
    }

    .logo {
        font-size: 2rem;
        letter-spacing: 0.4rem;
        cursor: pointer;
         text-align: center;

    }

    .btns {
        display: inline-block;
        justify-content: center;
        gap: 20px;
        
    }
    
    .btns.button {
        width:px;
        height: px;
        cursor: pointer;
        border: 1px solid white;
        color: white;
        text-transform: uppercase;
        background-color: transparent;
        font-weight: bold;
        font-size: 10pt;
        letter-spacing: 0.2rem;
        border-radius: 20px;
        position: relative;
        transition: 1.5s;
    }
    
    .main {
        height: 93vh;
        display:list-item;
        justify-content: center;
        align-items: center;
    }
    
    .main-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu-content .list-itens a {
        text-decoration: none;
        color: white;
        display: inline;
        padding: 1.5rem;
        transform: 2ms ease-in;
        position:relative;
        top: 10px; left: 10px;
        font-size: 0.8rem;
    }
    .second-text {
    margin-bottom: 7rem;
    font-size: 1.5rem;
    color: rgb(165, 165, 165);
    text-transform: uppercase;
}

