* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(0, 0, 0);
}

.spee {
    position: absolute;
    left: 0;
    top: 0;
}

#logo img{
    display: flex;
    justify-content: center;
    margin: auto;
}

header{
    background-image: url(../Imagens/escritorio-virtual.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 7%;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

header .container > h1{
    font-size: 290%;
    position: relative;
    top: -1.5em;
    color: aliceblue;
}

main{
    width: 62%;
    margin: auto;
    padding: 5%;
}

main section h1{
    font-size: 160%;
    text-align: center;
    color: #2e2d2d;
}

main section p{
    padding-top: 3%;
    color: #757474;
    font-size: 110%;
}

main section:nth-child(2){
    padding-top: 3%;
}

main section:nth-child(2) h2{
    font-size: 145%;
    color: #2e2d2d;
}

main section:nth-child(2) > ul{
    list-style-type: none;
    font-size: 110%;
    width: 45%;
    padding-top: 2%;
}

main section:nth-child(2) > ul li{
    padding-top: 3%;
}

#list2{
    position: absolute;
    left: 57%;
    bottom: -76%;
}

#rodape{
    background-color: black;
    background-attachment: fixed;
    padding: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#rodape p{
    color: aliceblue;
    text-align: center;
}

#rodape ul{
    list-style-type: none;
    display: inline-flex;
    gap: 30%;
    padding: 10%;
    padding-left: 30%;
}

#rodape ul li a img:hover{
    filter: grayscale(0%) sepia(100%) hue-rotate(0deg) saturate(1000%) brightness(100%);
}

@media screen and (max-width: 395px) {
    #logo img {
        width: 90%;
    }

    header .container > h1 {
        font-size: 130%;
    }

    main {
        width: 90%;
    }

}