body {
  color: #333;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.main {
  width: 100%;
  height: 100vh;
}

a {
  font-family: "Montaga", serif;
  color: #333;
  border: 1px solid #333;
  padding: 15px 50px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  border-radius: 30px;
  font-size: 20px;
  transition: 0.5s;
}
a:hover {
  color: #ea5b0c;
  border: 1px solid #ea5b0c;
}

.logo {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.logo img {
  width: 180px;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 670px;
  max-width: 100%;
  text-align: center;
}
.text h1 {
  font-family: "Montaga", serif;
  font-size: 78px;
  color: #333;
  margin: 0;
  letter-spacing: 3px;
  line-height: 1.1;
}
.text h1 span {
  color: #ea5b0c;
}
.text p {
  font-size: 16px;
}

@media (max-width: 768px) {
  .main {
    background-position: top !important;
  }
  .text h1 {
    font-size: 32px;
  }
}/*# sourceMappingURL=style.css.map */