html,
.container,
body {
  height: 90%;
}

.fancy-font {
  font-family: "Faculty Glyphic", sans-serif;
}

.standar-gradient {
  background: linear-gradient(39deg, rgb(28, 26, 29) 15%, rgb(48, 41, 48) 100%);
}

body {
  background-color: #fffffe;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%2333ec4c' fill-opacity='0.4' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

.bienvenida {
  display: block;
  font-family: "Faculty Glyphic", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 5rem;
  text-align: center;
}

p {
  font-size: 1.5rem;
  margin: 0;
  text-align: justify;
}

.image-button-container {
  display: inline-block;
  transition: transform 0.2s;
}

.image-button {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  height: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 250px;
}

.image-button:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.main-content {
  background: #faf0ff;
  background: linear-gradient(
    39deg,
    rgba(250, 240, 255, 1) 15%,
    rgba(255, 247, 247, 1) 100%
  );
  border: 0.4rem solid;
  border-radius: 10px;
  box-shadow: -16px 14px 52px 5px rgba(78, 107, 74, 0.75);
  -webkit-box-shadow: -16px 14px 52px 5px rgba(78, 107, 74, 0.75);
  -moz-box-shadow: -16px 14px 52px 5px rgba(78, 107, 74, 0.75);
}

.call-to-action {
  background-color: blueviolet;
  border-radius: 3rem;
  color: white;
  display: block;
  font-size: 3.5rem;
  font-family: "Faculty Glyphic", sans-serif;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  width: 500px;
}

.call-to-action:hover {
  font-weight: bold;
}

.navbar {
  background-color: black;
  color: aliceblue;
}
