/* Base styling */
body {
  background-color: #ffffff;
  color: #000000;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Headings */
h1, h2, h3 {
  font-weight: normal;
  margin-bottom: 1rem;
}

/* Paragraphs */
p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Buttons */
button, input[type="submit"] {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 1rem;
}

/* Links */
a {
  color: #000000;
  text-decoration: underline;
}

/* Forms */
form {
  margin-top: 2rem;
}

/* Inputs */
input[type="email"], input[type="text"] {
  padding: 0.5rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

/* Logo */
.logo {
  margin-bottom: 2rem;
}