body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  color: crimson;
  text-decoration: none;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: crimson;
}

.contact-container {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #111;
  border-radius: 8px;
  box-shadow: 0 0 10px #333;
}

.contact-container h1 {
  color: crimson;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  background-color: crimson;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #ff4c4c;
}

.socials {
  margin-top: 2rem;
  text-align: center;
}

.socials a {
  color: crimson;
  text-decoration: none;
}

.socials a:hover {
  text-decoration: underline;
}
