/* 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;
        }

    h1{
        text-align: center;
    }

    .main{
        height: 91vh;

        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        padding: 30px;
        padding-left: 70px;
        padding-top: 0px;
    }
        .main__img{
            width: 47%;
            height: 70%;
        }
        .main__text{
            width: 53%;
            height: 85%;
            padding: 50px;

            display: flex;
            flex-direction: column;
            justify-content: space-around;
        }
        p{
            font-size: 12px;
            font-weight: bold;
            text-align: center;
        }