/* 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;
        }
    .main{
        /* width: 100%; */
        height: 91vh;

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

            display: flex;
            flex-direction: column;
            justify-content: space-around;
            gap: 10px;
        }
        h1{
            padding-bottom: 10px;
        }
        p{
            font-size: 12px;
            font-weight: bold;
        }
        .main__image{
            width: 23%;
            height: 85%;
        }
