@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*::selection{
    background-color: white;
    color: black;
}

html{
    min-height: 100vh;
}


body{
    background-color: black;
    margin: 0;
    color: white;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    min-height: 100vh;
}

header{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 15px 0;
}

nav{
    display: flex;
    flex-direction: row;
}

hr{
    color: white;
    width: 80%;
    margin: 0;
}

h2{
    margin: 0;
}

main{
    display: flex;
    flex-direction: column;
    width: 75%;
}

main >img{
    margin: 15px 0;
}

.partes{
    min-height: 85vh;

}

.titulo-partes{
    display: flex;
    align-items: center;
    width: 100%;
}

.icon{
    height: 35px;
    width: 35px;
    margin-left: 10px;
}

a{
    text-decoration: none;
    color: white;
}

footer{
    background-color: rgb(14, 14, 14);
    min-height: 150px;
    width: 100% ;
}

::-webkit-scrollbar-track {
    background: #1a1a1a; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ffffff; 
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 8px; 
    height: 8px;
}

#sair-form{
    width: 100%;
    display: flex;
    justify-content: center;
}

#sair-butao{
    background-color: white;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    width: 20%;
    border-radius: 15px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: large;
    margin-bottom: 15px;
    color: black;
}

a:hover{
    filter: brightness(0.8);
    transition: 0.15s;

}

