@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Press Start 2P', cursive;
  background: radial-gradient(circle at top, #b8ffc4, #6ee78b, #008f3d);
  color: #222;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 700px;
  margin: 80px auto;
  background: #fff9d6;
  padding: 40px;
  border-radius: 20px;
  border: 4px solid #000;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

h1 {
  font-size: 1.2rem;
  color: #000;
  text-shadow: 2px 2px 0 #fff;
  margin-bottom: 15px;
}

h2 {
  font-size: 1rem;
  color: #00753a;
  margin-bottom: 20px;
}

p {
  font-size: 0.8rem;
  margin-bottom: 25px;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav li {
  margin: 15px 0;
}

a {
  display: inline-block;
  text-decoration: none;
  background: #ff4747;
  color: #fff;
  border: 3px solid #000;
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 0.2s ease;
  box-shadow: 3px 3px 0 #000;
}

a:hover {
  background: #ff2c2c;
  transform: translateY(-3px);
}
