html, body {
  font-family: 'Readex Pro', sans-serif;
  font-size: 18px;
  color: var(--marron);
}

.clear:after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

:root {
  --rojo: #A21D23;
  --naranja: #FF9500;
  --marron: #381E1F;
  --verde: #A4BC73;
}

.boton {
  background: var(--verde);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.30);
  font-size: 25px;
  border: solid 2px var(--naranja);
  color: #FFF;
  border-radius: 5px;
  padding: 15px 15px;
  text-decoration: none;
  cursor: pointer;
  display: table;
  line-height: 1;
  transition: transform 100ms;
  outline: none;
  user-select: none;
}

.boton:hover {
  transform: scale(1.05);
}

.swal-button, .swal-button:focus {
  background-color: var(--verde) !important;
}