@media screen and (min-width: 768px) {
    picture{
        background-color: black;
    }

    h1{
        font-size: 3em;
    }

    i.icone{
        display: none;
    }

    header{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

        background-color: black;
    }

    nav#itens{
        display: flex;
    }

    nav > a{
        border: none;
        border-radius: 10px;
        background-color: black;
    }

    main{
        width: 750px;
        padding: 0 40px;
    }

    img{
        width: 450px;
    }

    #lista-coluna{
        columns: 2;
    }  
    
    li:nth-child(2n){
        color: black;
    }

    footer > p{
        font-size: 18px;
    }

    /* Configurações de outras páginas*/

    .container{
        width: 90%;
        gap: 20px;
    
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 20px auto;
        padding: 20px;
    
        background-color: rgb(0, 0, 0);
        
    }
    
    .person{
        height: auto;
        margin-bottom: 30px;
    }

    .container > img{
        width: 50%;
        display: block;
        justify-content: center;
    }
}