* {
  box-sizing: border-box;
}

.tangerine-bold {
    font-family: "Tangerine", "sans-serif";
    font-weight: 700;
    font-style: normal;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f4f8;
  margin: 0;
  padding: 0;
}

.contact-container {
  max-width: 600px;
  margin: 150px auto;
  background-color: white;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-container h1 {
  text-align: center;
  margin-bottom: 10px;
}

.contact-container p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 15px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #005fa3;
}

.form-message {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: green;
}

@media (max-width: 600px) {
  .contact-container {
    margin: 20px;
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-form button {
    font-size: 14px;
  }
}
.navbar-custom {
    height: 136px;
}

.h1-container {
    height: calc(100vh - 136px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.h1-container a {
    background-color: #0077CC;
    margin-top: 10px;
}

.h1-container a:hover {
    background-color: #005FA3;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
}

.footer-link{
    text-decoration: none;
    color: #374562;
    font-weight: 500;
}

.footer-link:hover{
    text-decoration: underline;
}
