/* Basic styles for Strength Speed Steve site */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f7f7f7;
  color: #333;
}

header {
  background-color: #1a202c;
  color: #fff;
  padding: 1rem;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
}

main, section, aside {
  padding: 1rem;
}

article {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  margin-bottom: 1rem;
  padding: 1rem;
}

article h2 {
  margin-top: 0;
}

a {
  color: #2b6cb0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

aside {
  background: #edf2f7;
  border-top: 1px solid #e2e8f0;
  margin-top: 2rem;
}

aside h2 {
  margin-top: 0;
}

form {
  display: flex;
  flex-direction: column;
}

form input[type="email"] {
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
}

form button {
  padding: 0.5rem;
  background: #2b6cb0;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background: #2c5282;
}

/* Responsive layout */
@media (min-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  main {
    width: 60%;
  }
  aside {
    width: 60%;
  }
}