/* Limpiadores: resetean los valores predefinidos de la página*/
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    display: flex;
    flex-direction: column;

    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: antiquewhite;
}

    .nav{
        /* width: 100%; */
        height: 9vh;
        background-color: black;

        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
        .nav__link{
            color: whitesmoke;
            padding: 15px 206px;
        }
        .nav__link:hover{
            background-color: #a05000;
        }

    .images{
        /* width: 100vw; */
        height: 91vh;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
    }
        .images__img{
            width: 33.33%;
            height: 50%;
        }