body {
  background-color: #36393E;
}

h1 {
  font-family: "Space Mono", monospace
}

p {
  font-family: "Raleway"
}

.box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 300px;
  background-color: #2C2F33;
  border-radius: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
  animation: move 2s infinite;
}

.box h1 {
  font-size: 40px;
  color: #839192;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
}

.box h1:hover {
  transition: all 0.5s ease;
  transform: scale(1.5) rotate(5deg);
}

.box p {
  color: #839192;
  text-align: center;
  padding-bottom: 1px;
}

@keyframes move {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -55%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}