* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #C09870;
}

a {
  transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
  transform: scale(1.02);
}

.container {
  background-color: red;
  display: flex;
  flex-direction: column;
}
.container header {
  background: #184B64;
  min-height: calc(var(--app-height) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
@media (max-width: 768px) {
  .container header {
    min-height: 48vh;
  }
}
.container header h1 {
  width: 100%;
  max-width: 350px;
}
@media (min-width: 768px) {
  .container header h1 {
    max-width: 400px;
  }
}
.container header h1 img {
  width: 100%;
}
.container main {
  background: #C09870;
  min-height: calc(var(--app-height) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
}
@media (max-width: 768px) {
  .container main {
    min-height: 48vh;
  }
}
.container main h2 {
  color: #184B64;
  margin-bottom: 1rem;
}
.container main a {
  text-decoration: none;
}
.container main a img {
  display: block;
  width: 60px;
  margin: 0 auto 1rem;
}
.container main a address {
  display: block;
  font-style: normal;
  color: white;
  margin-bottom: 2rem;
}
.container main ul {
  list-style: none;
  display: flex;
}
.container main ul li a {
  display: block;
  text-decoration: none;
  margin: 0 0.5rem;
}
.container main ul li a img {
  width: 60px;
}

/*# sourceMappingURL=style.css.map */
