body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1d1d1f;
}

header {
  background-color: rgba(139, 0, 0, 0.0);
  color: #f5f5f7; /* Apple-style light gray */
  padding: 1em;
  text-align: center;
}

header h1,
header p {
  font-weight: bold;
  letter-spacing: 1px;
}

header h1 {
  font-size: 3em;
  font-weight: 1000;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #e52d27 0%, #ffeb3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.15);
  margin-bottom: 0.2em;
}

header p {
  font-size: 1.3em;
}

nav {
  background-color: #ffa07a;
  padding: 0.5em;
  text-align: center;
}

nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

main {
  padding: 2em;
}

section {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

form input, form textarea {
  width: 100%;
  margin-bottom: 1em;
  padding: 0.5em;
}

button {
  background-color: #8b0000;
  color: white;
  border: none;
  padding: 0.7em 1.5em;
  cursor: pointer;
}

footer {
  background-color: rgba(139, 0, 0, 0.0); /* Same as header */
  color: #f5f5f7; /* Apple-style light gray */
  padding: 1em;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
}

.background-blur {
  background: url('images/background.png') no-repeat center center fixed;
  background-size: cover;
  filter: blur(7px) brightness(0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  color: #f5f5f7;  /*Apple-style light gray */
}
