* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
    overflow: hidden;
  }
/*
  .container {
    position: relative;
    width: 100vw;
    height: 100vh;
  }
  */
  .text {
    position: absolute;
    font-family: 'Arial', sans-serif;
    color: white;
    opacity: 0;
    font-weight: bold;
    transition: transform 4s ease, opacity 2s ease;
  }
/*
  #word1 {
    font-size: 4rem;
    color: #f00;
  }

  #word2 {
    font-size: 3rem;
    color: #0f0;
  }

  #word3 {
    font-size: 5rem;
    color: #00f;
  }

  #word4 {
    font-size: 2.5rem;
    color: #ff0;
  }

  #word5 {
    font-size: 3.5rem;
    color: #f0f;
  }

  #word6 {
    font-size: 4.5rem;
    color: #0ff;
  }
  */