#about {
    background: rgb(70, 70, 70);
    color: white;
}

#about .contenedor {
    display: flex;
    flex-wrap: wrap;
}

#about .contenedor > div {
    width: 100%;
}

.fotoabout {
    width: 100%;
}

.fotoabout img {
    width: 100%;
    border-radius: 10px;
}

.descabout {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
}

.descabout h2 {
    width: 100%;
}

.descabout p {
    width: 100%;
    text-align: justify;
    margin-bottom: 10px;
}

.descabout a {
    margin: 10px auto;
    color: white;
    font-weight: 600;
    border: 2px solid white;
    width: auto;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
}

.descabout a:hover {
    background: rgb(24, 103, 139);
}

@media(min-width:800px){
    #about .contenedor > div {
        width: 50%;
    }

    .descabout {
        margin: auto 0;
        padding-left: 15px;
    }

    .descabout h2 {
        text-align: left;
    }
}