body {
  color: #757575;
  background-color: #1f1e1e;
  font-family: Tahoma, sans-serif;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #333333;
  display: flex;
}
nav ul li a {
  display: block;
  color: #757575;
  padding: 14px 16px;
  text-decoration: none;
  font-style: normal;
}
nav ul li a:hover {
  background-color: #111111;
  text-decoration: none;
  font-style: italic;
}
nav ul li a.active {
  background-color: #444444;
  pointer-events: none;
}

.header {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  font-size: 36px;
  font-weight: bold;
  margin-top: 0;
  text-align: center;
}

h2 {
  font-size: 24px;
  font-weight: normal;
  margin-top: 40px;
  margin-bottom: 10px;
  text-align: center;
}

p {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

a {
  color: #444444;
  text-decoration: none;
  font-style: italic;
}

a:hover {
  color: #757575;
  text-decoration: underline;
}

hr.solid {
  border-top: 3px solid #202020;
}

.photo-stream {
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 75%;
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }
}

form {
  max-width: 500px;
  margin: 150px auto;
}

fieldset {
  padding: 30px;
}

input,
textarea,
button {
  width: 100%;
}

#cookieConsent {
  display: none;
  background-color: #000000;
  color: #ffffff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  z-index: 9999;
}

#accept-cookies {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
