@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@800&display=swap');

h1 {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

body {
  background: linear-gradient(-45deg, #222831, #31363F, #76ABAE, #EEEEEE);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.box {
  background-color: #2b2d30;
  border: 2px solid black;
  padding: 20px;
  width: 70%;
  max-width: 500px;
  color: white;
  box-sizing: border-box;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

a:link {
  color: DeepSkyBlue;
  text-decoration: none;
}

a:hover {
  color: DodgerBlue;
}
