@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
    margin: 0;
    background-color: black;
    min-height: 100vh;
    color: white;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header> hr{
    width: 80%;
    margin: 0;
}

h1{
    font-size: xx-large;
}

h3 {
    font-size: x-large;
}

header> h1{
    margin-bottom: 10px;
}

header> h2{
    margin: 0;
    font-weight: 300;
    margin-block-end: 0.67em;
}

main{
    height: fit-content;
}

section{
    min-height: fit-content;
    text-align: center;
}

#sites> div{
    text-align: center;
}

#lst-sites{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 0;
    height: 100%;
    row-gap: 5%;
}

#lst-sites> li{
    list-style: none;
    width: 40%;
}

#lst-sites> li> div{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.img-sites{
    width: 100%;
    height: 100%;
    border: 5px rgb(32, 32, 32) solid;
}

.ttl-sites{
    text-decoration: none;
    color: white;
}

#lst-sites> li> div> a> img{
    height: 100%;
    width: 100%;
}

#lst-contato{
    display: flex;
    justify-content: space-evenly;
    padding: 0;
    flex-wrap: wrap;
}

#lst-contato> li{
    list-style: none;
    width: 20%;
}

#lst-contato> li> a> img{
    height: 170px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ffffff; 
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 8px; 
    height: 8px;
}
