body {
    background-color: #000;
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  #header {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 30px;
  }

  h1 {
    font-size: 48px;
    margin-top: 100px;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
  }

  #main-content {
    text-align: center;
    padding: 50px;
  }

  #coming-soon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
  }

  #description {
    font-size: 24px;
    margin-bottom: 50px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  #footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
  }

  .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: move 10s infinite;
  }

  @keyframes move {
    0% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(200px, 200px);
    }
    50% {
      transform: translate(400px, 0);
    }
    75% {
      transform: translate(200px, -200px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  @media screen and (max-width: 600px) {
    h1 {
      font-size: 32px;
      margin-top: 50px;
      margin-bottom: 30px;
    }

    #main-content {
      padding: 30px;
    }

    #description {
      font-size: 18px;
      margin-bottom: 30px;
    }
  }