*{
    margin: 0;
    padding: 0;
}
body{
    background-color: skyblue;
}
.content {
    height: 75vh;
    background-color: black;
    display: flex;
    gap: 5px;
    flex-direction: row;

}
.content>* {
    width: 20%;
    background-color: lightblue;
}
#im1 {
    background-image: url(imagenes/imagen1.jpg);
    background-position: 50% 50%;
    background-size: cover;
}
#im2 {
    background-image: url(imagenes/imagen2.jpg);
    background-position: 50% 50%;
    background-size: cover;
}
#im3 {
    background-image: url(imagenes/imagen3.jpg);
    background-position: 50% 50%;
    background-size: cover;
}
#im4 {
    background-image: url(imagenes/imagen4.jpg);
    background-position: 50% 50%;
    background-size: cover;
}
#im5 {
    background-image: url(imagenes/imagen5.jpg);
    background-position: 50% 50%;
    background-size: cover;
}

.ofert {
    background-color: black;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 45px;
}
.ofert a {
    color: white;
}

.ofert img {
    width: 30vw;
}

.btn-lila {
    background-color: #6421ff;
    padding: 20px 110px;
    margin: 20px;
    border-radius: 5px;
    text-decoration: none;
}
.btn-lila:hover{
    background-color: #6488ff;
}
