@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --fontFamily: "Montserrat", sans-serif;
  --colorWhite: #ffffff;
  --colorBlack: #000000;
  --colorGreenDark: #405c50;
  --colorGoldenDark: #ba915d;
}

a {
  text-decoration: none;
}

body {
  font-family: var(--fontFamily);
  background: #405d50;
  background: radial-gradient(
    circle,
    rgba(64, 93, 80, 1) 0%,
    rgba(56, 83, 71, 1) 100%
  );
  color: var(--colorWhite);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  gap: 1rem;
}

.logo {
  width: 15%;
}

.title,
.subtitle {
  margin: 0;
  text-align: center;
}

.title {
  font-size: 1.3rem;
  font-weight: 800;
}

.subtitle {
  font-size: 1rem;
  font-weight: 400;
}

.btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.btn {
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 1rem;
  background-color: var(--colorWhite);
  transition: all 0.3s ease-in-out;
}

.btn.btn-green {
  color: var(--colorGreenDark);
}
.btn.btn-green:hover {
  color: var(--colorGoldenDark);
}

.btn.btn-golden {
  color: var(--colorGoldenDark);
}
.btn.btn-golden:hover {
  color: var(--colorGreenDark);
}

@media (375px <= width <= 768px) {
  .logo {
    width: 40%;
  }
  .title {
    font-size: 1.2rem;
  }
  .subtitle {
    font-size: 0.9rem;
    width: 80%;
    margin: auto;
  }
  .btn-box {
    flex-direction: column;
    gap: 1rem;
  }
}
