.navbar ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: nowrap; /* assumes you only want one row */
}

.header {
  background-image: url("../images/header.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 28rem;
  border: solid 1px rgb(169, 169, 169);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}
.header .header-text {
  color: white;
  text-shadow: 3px 3px 3px rgb(64, 64, 64);
}

.contact .contact-left {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.contact .contact-left i {
  transition: 0.2s ease-out;
}
.contact .contact-left i:hover {
  color: rgb(137, 137, 137);
}
.contact .contact-left .map {
  width: 100%;
}
.contact .contact-left .map iframe {
  width: 100%;
  height: 18rem;
}
.contact .contact-right {
  display: flex;
  flex-direction: column;
  min-height: 15rem;
  background-image: url("../images/contact.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: solid 1px rgb(169, 169, 169);
}/*# sourceMappingURL=main.css.map */