*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
   height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   color: white;
   background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}
.container{
    display: flex;
    width: 100vw;
  
}
.image-1{
    background-image: url(./img/imagen1.jpg);
}
.image-2{
    background-image: url(./img/imagen2.jpg);

}.image-3{
    background-image: url(./img/imagen3.jpg);
}
.image-4{
    background-image: url(./img/imagen4.jpg);

}
.image-5{
    background-image: url(./img/imagen5.webp);

}
.slide{
    position: relative;
    height: 80vh;
    border-radius: 0px;
    flex: 0.5;
    margin: 10px;
    cursor: pointer;
    transition: all 200ms ease-in;
}
.slide h3{
    position: absolute;
    text-shadow: 1px 1px 6px rgb(255, 255, 255);
    bottom: 30px;
    left: 20px;
    opacity: 0;
    font-size: 40px;
    margin: 0;
    background-color: black;
    width: fit-content;
    height: 100px;
    text-align: center;
    border-radius: 20px;
    padding: 20px;

}
.bg-image{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px ;
    
}
.slide.active{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 3;
    

}
.slide.active h3{
    opacity: 1;
    transition: opacity 0.5s ease-in;
}
h1{
    display: flex;
    position: absolute;
    z-index: 999;
    top: 10px;
    left: 5px;
    text-shadow: 0px 0px 10px;
    width: 400px;
    height: 70px;
    font-size: 60px;
}