
.hero-image{
    background-image: url("./JovenesBackground.jpg");
    height: 25vh;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
  
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--background-white-color);
    font-size: 25px;
    font-weight: bold;
}

.descripcion {
    width: 100%;
    height: 100vh;
    text-align: center;
    color: var(--background-dark-color);
    margin-top: 5%;
}

@media screen and (min-width: 1024px){
    .hero-image{
        height: 50vh;
    }
    .hero-text {
        font-size: 65px;
    }
    .descripcion {
        height: 30vh;
    }
}
