body {
  font-family: 'Monaco';
  text-align: center;
  margin: 0;
}

.support-btn {
  position: fixed;
  top: 0;
  right: 0;
  background-color: skyblue;
  text-transform: uppercase;
  color: black;
  border: 1px solid black;
  text-decoration: none;
  padding: 10px 20px;
}

#play-btn {
  background-color: skyblue;
  text-transform: uppercase;
  padding: 20px 40px;
}

#score {
  position: relative;
}

.score-increment {
  position: absolute;

  animation-name: scoreIncrement;
  animation-duration: 1s;
  color: green;
}

.score-label {
  font-weight: bolder;
}

.content-container {
  margin: 0;
  overflow: hidden;
}

.game-container {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: flex-end;
  height: 50vh;
  margin-bottom: 20px;
}

.lato {
  /* position: absolute; */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  transform-origin: 50% 0%;
  position: absolute;
}

.lato-left {
  transform: rotate(12deg);
}

.lato-right {
  transform: rotate(-12deg);
}

.rope {
  border-radius: 1in;
  height: 150px;
  width: 10px;
  background-color: skyblue;
}

.ball {
  margin-top: -10px;
  width: 80px;
  height: 80px;
  background-color: firebrick;
  border-radius: 1in;
  position: relative;
}

.ball::after {
  content: '';
  background-color: white;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 20px;
}

/* The animation code */
@keyframes rotateLeft {
  0% {
    transform: rotate(12deg);
  }
  50% {
    transform: rotate(170deg);
  }
  100% {
    transform: rotate(12deg);
  }
}

/* The animation code */
@keyframes rotateRight {
  0% {
    transform: rotate(-12deg);
  }
  50% {
    transform: rotate(-170deg);
  }
  100% {
    transform: rotate(-12deg);
  }
}

/* The animation code */
@keyframes scoreIncrement {
  0% {
    font-size: large;
  }
  20% {
    font-size: xx-large;
  }
  100% {
    font-size: medium;
  }
}

/* The animation code */
@keyframes catBtn {
  0% {
    font-size: large;
  }
  50% {
    font-size: xx-large;
  }
  100% {
    font-size: medium;
  }
}

.lato-left-animate {
  animation-name: rotateLeft;
  animation-duration: 0.1s;
}
.lato-right-animate {
  animation-name: rotateRight;
  animation-duration: 0.1s;
}

@media screen and (max-width: 780px) {
  h1 {
    margin-top: 8vh;
  }
}
