* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}

/* nav bar  */
nav {
  background-color: white;
  height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
}

nav a:hover {
  color: #3d91cc;
}

a {
  text-decoration: none;
  color: #202a5d;
  font-size: 26px;
  margin-left: 100px;
}

nav img {
  width: 150px;
  height: 150px;
  margin-top: 10px;
}

.top-page {
  text-align: center;
  background-color: rgba(0, 34, 98);
  height: 200px;
  padding: 3% 0;
}

h1 {
  color: white;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.box {
  height: 0.4rem;
  border-radius: 3px;
  width: 50%;
  margin-left: 25%;
  background-color: white;
}

/* form  */

/* label styling for form inputs */
label {
  font-size: 1rem;
  color: #202a5d;
  margin-top: 24px;
  margin-bottom: 5px;
}

/* button styling when hovered */
button:hover {
  background-color: #3d91cc;
}

label {
  display: block;
}

form {
  width: 100%;
}

.contact-form {
  width: 50vw;
  margin: 0 auto;
}

.contact-form input {
  width: 100%;
  height: 50px;
}

.contact-form h2 {
  text-align: center;
  font-size: 2rem;
  color: #202a5d;
  margin: 50px;
}

.contact-form button {
  background-color: #202a5d;
  color: white;
  height: 50px;
  width: 50%;
  margin: 40px auto;
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  border-radius: 2px;
  border-style: none;
}

.contact-form button:hover {
  background-color: #3d91cc;
  transition: all 0.2s ease-in-out;
}

/* footer  */

footer {
  background-color: rgba(0, 34, 98, 0.9);
  width: 100%;
  height: 250px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  color: #ffffff;
  display: block;
}

.copyrights {
  text-align: center;
  margin-top: 10px;
}

footer a {
  color: #ffffff;
  font-size: 3rem;
  margin-left: 5%;
}

.icons {
  text-align: center;
}

footer a:hover {
  color: #3d91cc;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 600px) {
  nav {
    display: block;
    height: 70vw;
  }

  .top-page {
    display: block;
  }

  .contact-form {
    display: block;
  }
}
