.btn {
  display: inline-block;
  background-color: #ea6c06;
  color: #fff;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  padding: 0.75em 1.5em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease;
}
.btn:hover, .btn:focus {
  background-color: #b85505;
}
.btn:active {
  background-color: #9f4a04;
}

h1 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 1.5rem;
  color: #091253;
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

p {
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #050a2e;
}
@media (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

body {
  margin: 0;
  font-family: "Lexend", sans-serif;
  background-color: #fff;
  color: #050a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  font-size: 18px;
  box-sizing: border-box;
  padding: 2rem;
}

.content {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
}

hr {
  width: 100%;
  border-top: 1px solid #F6E8CF;
}

.hidden {
  display: block;
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

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