@import url('https://fonts.googleapis.com/css2?family=Micro+5&display=swap');

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Micro 5', monospace;
  background-color: #fce7e7;
  color: #000;
}

/* Center wrapper like Phavuca */
.wrapper {
  max-width: 850px;
  margin: 2rem auto;
  padding: 1rem;
}

/* Retro header */
header {
  text-align: center;
  padding: 1rem;
  border: 3px solid #000;
  border-radius: 12px;
  background: white;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2rem;
  background: linear-gradient(-90deg, #f4917e, #f2c159, #65acd0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

/* Nav bar styled like buttons */
nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #000;
  padding: 0.4rem 0.8rem;
  border: 2px solid #000;
  border-radius: 8px;
  background: white;
  transition: all 0.2s ease;
}

nav a:hover {
  background: #65acd0;
  color: white;
}

/* Main content box */
.main-box {
  background: white;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 4px 4px 0px #000;
}

/* Subheadings with your underline colors */
.main-box h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  text-decoration: underline;
  text-decoration-color: #f2c159;
}

/* Links inside box */
.main-box a {
  color: #f4917e;
  text-decoration: underline;
}

.main-box a:hover {
  color: #65acd0;
}

/* Footer like Phavuca but recolored */
footer {
  text-align: center;
  padding: 0.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #555;
}
