.Yellow {
  font-size: larger;
  font-weight: bold;
  color: #fcd116;
}

.boton-enlace {
  display: inline-block;
  padding: 20px 30px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #f0c14b;
  border: 1px solid #a88734;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(to bottom, #f7dfa5, #f0c14b);
  transition: all 0.3s ease;
}

.boton-enlace:hover {
  background-color: #f5a623;
  background-image: linear-gradient(to bottom, #fbc96b, #f5a623);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
}

.boton-enlace:active {
  background-color: #f0c14b;
  background-image: linear-gradient(to bottom, #f0c14b, #f7dfa5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}