 
body{
    background-color: var(--bege); 
}
main{
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 100px; 
}

.about-capa{
    background-color: #202020;
    height: 100vh;
}
.about-capa>h1{
    font-size: 120px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--bege);
    font-variation-settings:
    "wdth" 62;
    position: sticky;
    top: 20%;
}
.about1{
    display: flex;
}
.about1>img{
    max-height: 470px;
    margin: 20px 40px 0 0;
    border-radius: 2px;
}
.about-text1{
    align-self: center;
}

.about-content{
    width: 60%;
    margin: 15px auto;
    color: black;
}
.about-content>img{
    max-width: 80%;
    margin: 0 10%;
}

.about-content>p,.about-text1>p{
    margin: 35px 0;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 200;
}
/* color */
#menu a:hover{
    text-decoration-color: var(--verde3);
}
.copyright{
    background-color: var(--verde3); 
}
.footer a:hover{
    text-decoration: underline 2px var(--verde3);
    font-style: italic;
}

@media (max-width: 480px){
    .about-capa{
        height: 90vh;
    }
    h1{
        font-size: 65px;
        line-height: 0.9;
    }
    
    .about-content{
        width: 80%;
        text-align: center;
    }
    .about-content>img, .about1>img{
        max-width: 70%;
        margin: 0 auto;
    }
    
    .about-content>p,.about-text1>p{
        font-size: 14px;
    }
    .about1{
        display: inline;
    }
}
@media screen and (min-width: 1601px){
    .about-capa>h1{
        font-size: 170px;
    }
    .about-content{
        width: 40%;
    }

}

