body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header styles */
header {
  background-color: #00000;
  /* background color */
  color: white;
  /* text color */
  /* add padding */
}

/* Navbar styles */
nav {
  background-color: #000000;
  /* background color */
  color: white;
  /* text color */
}

nav a {
  color: white;
  /* text color */
}

nav {
  margin-bottom: 20px;
}

/* Logo styles */
.logo {
  font-size: 30px;
  font-weight: bold;
}

/* Menu item styles */
.menu-item {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Active menu item styles */
.active {
  font-weight: bold;
  color: white;
}

@media (max-width: 600px) {
  form {
    width: 100%; /* make the form take up the full width of the screen */
  }
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;

}

form label {
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-align: left;
}

form input,
form textarea {
  margin-bottom: 20px;
  padding: 1rem;
  font-size: 1.2rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form input[type="submit"] {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.error-message {
  color: red;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

form label,
form input,
form textarea {
  font-size: 0.8rem; /* reduce the font-size of the labels and inputs */
}


footer {
  background-color: #343a40;
  /* background color */
  color: white;
  /* text color */
  padding: 20px 0;
  /* add padding */
  text-align: center;

}

footer a {
  color: white;
  /* text color */
}

footer a:hover {
  color: grey;
}

.social-links {
  margin-right: 20px;
}
