
body {
    background-color: rgb(23, 23, 23);
    margin: 0;
  }

  .image-container {
    width: 80vw;
    height: 90vh;
    margin: 0 auto;
    position: relative;
}

.hover {
    width: 100%;
    height: 100%;
    position: absolute;
}

  .main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
  
  }
  
  .hover-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .hover-image:hover {
    opacity: 1;
  }
  #text-container {
   
    transform: translateX(-50%);
  }
  @keyframes slide-in {
    from { left: -100%; }
    to { left: 50%; }
  }
  
  #text-container {
    color: white;
    padding-top: 20px;
    width: 50vw;
    position: absolute;
    left: -200;
    animation: slide-in 8s ease forwards;
    font-size: 20px
  }