/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  font-family: 'VT323', monospace;
  font-size: 18px;
  margin: 0;
  padding: 0;
  background-image: url("images/background_day_1280x1280.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main centered panel */
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fbe19b;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 0;
  flex-grow: 1;
}

/* Header, Main, Footer Layout */
header, main {
  padding: 1.5rem;
  max-width: 800px;
  margin: auto;
}

/* Typography */
h1 {
  font-size: 2.4rem;
  margin-bottom: 0.2rem;
}

h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

ul {
  padding-left: 1.2rem;
}

a {
  color: #0087ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  font-size: 0.9rem;
  color: #666;
  padding: 0.5rem 1.5rem;
  margin-top: auto;
  text-align: left;
  border-top: none; /* Removed white line */
}

/* Sections */
section {
  margin-bottom: 2.5rem;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 0;
  }

  .content-wrapper {
    margin: 0 1rem;
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
