* {
    padding: 0;
    margin: 0;
  }
  .text-white {
    color: white;
    font-family: "Press Start 2P", cursive;
  }
  html,
  body {
    height: 100%;
  }
  h1 {
    text-align: center;
    position: absolute;
    inset: 50px;
    font-family: Rubik;
  }
  .gameArea {
    display: flex;
    flex-direction: row;
  }
  .box {
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .botSide {
    background-color: #ff7171;
  }
  .botSide img {
    transform: rotate(90deg);
  }
  .playerSide {
    background-color: #4bd1ef;
  }
  .playerSide img {
    transform: rotate(-90deg);
  }
  #gameOptions {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.12),
      0 4px 4px rgba(0, 0, 0, 0.12), 0 8px 8px rgba(0, 0, 0, 0.12),
      0 16px 16px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-around;
    position: absolute;
    bottom: 30px;
    left: 50%;
    right: 50%;
    translate: -50%;
    width: 400px;
    height: 100px;
    background-color: white;
    border-radius: 50px;
  }
  #gameOptions img {
    padding: 1rem;
  }
  #gameOptions img:hover {
    animation: translating 0.5s alternate infinite;
  }
  @keyframes translating {
    0% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(-10px);
    }
  }

  .announcement {
    text-align: center;
    width: 200px;
    height: 30px;
    border-radius: 20px;
    position: absolute;
    inset: 50%;
    translate: -50%;
  }