.slideFadeIn {
    opacity: 0;
    transform: translateX(100%);
    position: relative;
    animation: slide-fade-in 1s ease-in-out forwards;
  }
  
  @keyframes slide-fade-in {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }

  .divider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  
  .game-embed {
    flex-basis: 640px;
  }
  
  .about-section {
    flex-basis: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.5);
    animation: grow-in 0.5s ease-out forwards;
  }
  
  .about-box {
    padding: 20px;
    background-color: rgb(134, 0, 63);
    border-radius: 20px;
    border: 6px solid white;
    text-align: center;
    box-shadow: 0 8px 16px black;
  }
  
  .about-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  p {
    text-align: left;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0;
    color: white;
    font-family: "Gilroy", sans-serif;
    text-shadow: 5px 5px 10px rgba(0,0,0,1);
  }
  
iframe {
  box-shadow: 0 8px 16px black;
}

  h2 {
    text-shadow: 0 8px 16px black;
  }
  @keyframes grow-in {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }