.home-image{
    width: 100%;
    height: auto;
}
.home-image img{
    width: 100%;
}
.promo-container-container{
    box-sizing: border-box;
    padding: 15px 25px;
    width: 100%;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.promo-container{
    width: 100%;
    height: auto;
    aspect-ratio: 16/6;
    background-color: rgb(0, 0, 0);
    overflow-y:hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    justify-self: center;
    border: 2.5px solid rgb(189, 253, 246);
    border-radius: 15px;
    box-sizing: border-box;
    backdrop-filter: blur(.5rem);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.promo-img{
    width: 100%;
}


.fade {
    animation-name: fade;
    animation-duration: 5s;
  }
  
  @keyframes fade {
    from {opacity: 0}
    30% {opacity: 1}
    90% {opacity: 1}
    to {opacity: 0}
  }