/* Animations */
@keyframes bounce {
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
}

body {
  background: linear-gradient(to right, black, rgb(0, 81, 115));
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: rgb(22, 22, 22);
  text-align: center;
  font-weight: bold;
  overflow: hidden;
}

img {
  border-radius: 6px;
  height: 200px;
  margin-top: 20px;
  animation: bounce 2s infinite;
}

h1,
h2 {
  font-size: 40px;
  margin-bottom: 50px;
  text-align: center;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  color: white;
  transition: transform 0.35s ease;
}
h1:hover,
h2:hover {
  transform: scale(1.05);
}

h2 {
  font-size: 25px;
  font-style: italic;
}

a {
  transition: transform 0.35s ease;
  background-color: white;
  font-size: 20px;
  border-radius: 10px;
  padding: 5px 10px 5px 10px;
  display: block;
  margin: 10px;
  color: white;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  background: linear-gradient(to left, black, transparent);
}

a:hover {
  transform: scale(1.05);
  border: 2px solid white;
}

p {
  position: fixed;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 10px;
  background-color: rgb(255, 255, 255, 0.5);
  border-radius: 0 20px 0 0;
  color: black;
}

.youtube:hover {
  background-image: linear-gradient(20deg, white, black, red, black, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tiktok:hover {
  background-image: linear-gradient(
    5deg,
    white,
    red,
    black,
    rgb(55, 180, 222),
    white
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.itchio:hover {
  background-image: linear-gradient(
    20deg,
    white,
    black,
    rgb(224, 69, 95),
    black,
    white
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.discord:hover {
  background-image: linear-gradient(
    20deg,
    white,
    black,
    black,
    rgb(93, 106, 242),
    rgb(93, 106, 242),
    black,
    white
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.x:hover {
  color: black;
  background: transparent;
}
