@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

body {
    margin: 0;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    
}
p {
    font-family: 'Poppins', sans-serif;   
    margin-top: 20px;
    color: #fff;
}
.secciones {
    display: flex;
    padding: 0px 40px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    height: 100vh;
    transform: scale(1);
    transition: all 0.5s;
}
.secciones:hover {
    transform: scale(1.1)
}
.secciones p {
    max-width: 500px;
    text-align: center;
}
.secciones a {
    padding: 20px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;   
    font-weight: 600;
    margin-top: 5px;
    color: #fff;
    
}
.secciones img {
    
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 700px) {
    body {
        flex-direction: column;
        flex-wrap: wrap;
    }
    p {
        font-size: 13px
        font-weight: 600;
    }
    .secciones {
        height: 50vh;
        width: 100%;
        padding: 0px;
    }
    .secciones p {
    max-width: 300px;
        margin: 15px 30px;
    }
    .imagen {
        width: 80px;
    }
    .logojardin2 {
        margin-top:-20px;
    }
    .secciones a {
    padding: 10px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;   
    font-weight: 600;
    font-size: 14px;
    margin-top: 5px;
    color: #fff;
    
}
}

