:root {
  --primary-color: black;
  --secondary-color: white;
  --tercery-color: red;
  --bold: 700;
  --normal: 500;
  --light: 200;
  color: var(--secondary-color);
  font-family: "Montserrat Alternates", serif;
  background-color: var(--primary-color);
}

body {
  margin-top: 3%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.title-container {
  text-align: center;
}
.title-container img {
  width: 80%;
  max-width: 600px;
}
.title-container .subtitle {
  font-size: 1.7rem;
}

span {
  font-size: 24px;
}

img {
  width: 80%;
  max-width: 400px;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 15px;
}

button {
  border: none;
  padding: 15px 30px;
  border-radius: 35px;
  font-weight: var(--bold);
  color: black;
  background-color: var(--secondary-color);
  cursor: pointer;
}
button:hover {
  background-color: var(--tercery-color);
  font-weight: var(--bold);
  color: white;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
button:disabled, button button[disabled] {
  pointer-events: none;
  font-weight: var(--normal);
  background-color: #e2e2e2;
  color: #8f8f8f;
}

@media only screen and (max-width: 991px) {
  .title {
    max-width: 300px;
  }
}

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