body {
    width: 100vw;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0px;
    display: flexbox;
    flex-direction: column;

}

header {
    display: flexbox;
    align-items: center;
    background-color: black;
    width: 100vw;
}

header div#cabeca {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100vw;
    padding: 0px;
}

header div#cabeca h1 {
    font-size: 2vw;
    justify-content: center;
    align-items: center;
    display: flex;
    color:blanchedalmond;
    border: 3px solid khaki;
    border-radius: 100px
}

header div#cabeca img#profile{
    width: 15vw;
    border-radius: 4vw;
    padding: 1vw;
    border: 3px solid khaki;
}

header div p#p1 {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 3vw;
    padding: 10px;
    color:blanchedalmond;
    border: 3px solid khaki
}

nav {
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: black;
    width: 100vw;
}

nav ul {
    align-items: center;
    display: flex;
    justify-content: space-evenly;
    list-style: none;
}

nav ul li {
    margin: 0;
    padding: 20px;
}

nav ul li a {
    width: 100vw;
    padding: 0.7vw;
    text-decoration: none;
    font-size: 2vw; 
    color:khaki;
    border: 0.3vw solid khaki;
    border-radius: 100px;
}

nav ul li a:hover {
    margin: none;
    width: 100vw;
    border-radius: 100px;
    text-decoration: none;
    border: 0.3vw solid aliceblue;
    color: white;
    transition: 200ms;
}

main {
    background-image: url("assets/fundo.jpg");

}

main article {
    display: flexbox;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    padding: 5vw;
    color: white;
}

main article img {
    width: 100%;
}

main article:hover {
    background-color: rgba(0, 0, 0, 0.8);
    display: flexbox;
    align-items: center;
    justify-content: space-between;
    color:white;
}

div#barra{
    padding: 5vw;
    background-color: black;
}

text {
    margin: 40px;
    align-items: center;
    justify-content: space-around;
    text-align: justify;
}

img {
    border-radius: 3%;
}

div#posfooter{
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

div#posfooter:hover{
    background-color: white;
    transition: 0.3s ease-in-out
}

div#posfooter:hover > *{
    background-color: white;
    transition: all 0.3s ease-in-out;
    color: black;
}


div#posfooter img#cima{
    width: 2vw;
    background-color: white;
    border-radius: 100%;
    transform: rotate(90deg);
    
}

div#posfooter p{
    color:white;
    font-size: 2vw;

}

footer {
    margin-top: 5vw;
    align-items: center;
    justify-content: space-evenly;
    background-color: black;
    padding: 3vw; 
}

footer div#midia{
    display: flex;
    justify-content: space-evenly;
    background-color: black;
}

footer img{
    width: 4vw;
}
@media screen and (min-width: 740px) {
    main article {
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: 0.3s;
        color: aliceblue;
    }

    main article:hover {
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        align-items: center;
        justify-content: space-between;
        color:azure
    }

    main article img {
        width: 30vw;
    }

    header {
        display: flexbox;
        align-items: center;
        background-color: black;

    }

    header div#cabeca {
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin-top: 3vw;
    }

    header div p#p1 {
        background-color: black;
        display: flex;
        align-items: center;
        justify-content: space-around;
        font-size: 1.5vw;
        padding: 10px;
    }

    header div#cabeca h1 {
        justify-content: center;
        align-items: center;
        display: flex;
        width: 30vw;
    }

    nav {
        height: 20vh;
        display: flex;
        align-items: center;
        justify-content: space-around;
        background-color: black;
        width: 100vw;
    }
    
    nav ul {
        align-items: center;
        display: flex;
        justify-content: space-evenly;
        list-style: none;
    }
    
    nav ul li {
        margin: 0;
        padding: 20px;
    }
    
    nav ul li a {
        width: 100vw;
        padding: 0.7vw;
        text-decoration: none;
        font-size: 2vw; 
        color:blanchedalmond;
        border: 0.3vw solid khaki;
        border-radius: 100px;
    }
    
    nav ul li a:hover {
        margin: none;
        width: 100vw;
        border-radius: 100px;
        text-decoration: none;
        border: 0.3vw solid aliceblue;
        color: aliceblue;
        transition: 200ms;
    }
}