body{
    margin: 0;
    padding: 0;
    background-image: url("../Images/sobre.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}
.boton{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 4vw;
    color: white;
    font-family: Dancing;
    font-weight: 400;
}
.imagen_res{
    max-width: 300px;
    height: 300px;
    justify-content: center;
    transition: transform 1s ease-in-out;
    animation: zoom 1s infinite alternate;
}
@media screen and (max-width: 767px) {
    
    .imagen_res {
        width: 110px;
        height: 110px;
    }
}
@keyframes zoom{
    0%{
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}