body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  box-sizing: border-box;
  color: #302e2e;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1180px;
  margin: auto;
}

section {
  height: 100vh;
  position: relative;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 96px);
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .main {
    height: calc(100vh - 115px);
  }
}
.main .logo img {
  width: 18vw;
}
@media screen and (max-width: 1180px) {
  .main .logo img {
    width: 320px;
  }
}
@media screen and (max-width: 800px) {
  .main .logo img {
    width: 260px;
    margin-bottom: 48px;
  }
}
.main .text h1 {
  font-family: "Lora", sans-serif;
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #896a00;
}
.main .text p {
  font-size: 22px;
  margin: 0;
}
@media screen and (max-width: 560px) {
  .main .text h1 {
    font-size: 64px;
  }
  .main .text p {
    font-size: 19px;
  }
}
@media screen and (max-width: 480px) {
  .main .text h1 {
    font-size: 56px;
    padding: 0 8px;
  }
  .main .text p {
    font-size: 18px;
    padding: 0 8px;
  }
}

.contact {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}
@media screen and (max-width: 560px) {
  .contact {
    flex-direction: column;
    padding: 8px 0;
  }
}
.contact a {
  margin: 0 24px;
  color: #896a00;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .contact a {
    margin: 0 16px;
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .contact a {
    margin: 8px auto;
  }
}
.contact img {
  width: 16px;
  margin-right: 10px;
}
@media screen and (max-width: 800px) {
  .contact img {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */