html, body {
  font-family: 'Heebo', sans-serif;
  font-size: 18px;
}

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

:root {
  --negro: #0D140A;
}

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

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

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