body {
  font-family: 'Comic Sans', sans-serif;
  background-color: #f2f2fe;
  color: #222;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header, footer {
  background-color: #f2f2fe;
  padding: 1rem 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.subscribe-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 10px;
  text-align: center;
}

.subscribe-form {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  min-width: 250px;
}

.subscribe-form button {
  padding: 10px 18px;
  font-size: 16px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: #004d99;
}
