body {
  margin: 0;
  padding: 0;
  background: url("https://art.pixilart.com/4b680819d6447f3.gif") no-repeat center center fixed;
  background-size: cover;
  overflow: hidden;
  font-family: "Roboto", sans-serif;
  color: white;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h1 {
  font-size: 4rem;
  margin: 0;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #bbb;
}

.projects {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.project-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  width: 220px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: transform 0.2s, background 0.3s;
}

.project-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.game-title {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.back-button {
  display: inline-block;
  margin-top: 50px;
  text-decoration: none;
  color: #00ff99;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.back-button:hover {
  color: #00ffaa;
}