a{
  text-decoration: none;
  color:#00b4eb;
}
.button {
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  background-color: #ffffff;
  border: 2px solid #bcd0dc;
  border-radius: 15px;
  padding: 1em;
  margin: 2em auto;
  display: block;
  width: 50%;
  max-width: 500px;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.button:hover {
  background-color: #00b4eb;
  border-color: #027592;
  cursor: pointer;
}
a:hover{
  color: #ffffff;
}

.imagen {
  display: block;
  width: 50%;
  max-width: 600px;
  margin: 2em auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE STYLES */

@media (max-width: 768px) {
  .button,
  .imagen {
    width: 90%;
    margin: 1.5em auto;
  }

  .button {
    font-size: 18px;
    padding: 0.9em;
  }
}

@media (max-width: 480px) {
  .button {
    font-size: 16px;
    padding: 0.8em;
  }

  .imagen {
    width: 95%;
  }
}
