@charset "UTF-8";
* {
  text-decoration: none;
}

body {
  min-height: 100vh;
  /*display: flex;
  flex-direction: column;*/
  background-image: url(imgs/fondo.png);
  margin: 0;
}

h1, h2, h3 {
  text-align: center;
}

h1 {
  font-size: 50px !important;
  font-weight: bold !important;
  padding-top: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: white;
  text-shadow: 3px 0px 7px rgba(13, 25, 65, 0.8), -3px 0px 7px rgba(30, 48, 99, 0.8), 0px 4px 7px rgba(57, 86, 216, 0.8);
}

h3 {
  padding-bottom: 10px;
  font-style: italic;
  color: white;
  text-shadow: 3px 0px 7px rgba(13, 25, 65, 0.8), -3px 0px 7px rgba(30, 48, 99, 0.8), 0px 4px 7px rgba(57, 86, 216, 0.8);
}

#cabecera {
  display: block;
  height: 10%;
  width: 100%;
}

#cabecera img{
  margin-bottom: 10px;
  height: 25px;
  width: 45px;
}

#contenido {
  display: flex;
  align-items: center;
  justify-content: center;
}

#botones {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  width: 100%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input {
  font-weight: bold;
  background-color: white !important;
}

.textopequeño {
  padding-left: 1px;
  letter-spacing: 0.5px;
  font-style: italic;
  font-size: 12px;
}

.textogrande {
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 23px;
}

.caja {
  width: 40%;
  height: 420px;
}

#formulario {
  padding-top: 2% !important;
  padding-bottom: 10px;
  background-color: aliceblue;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0px 25px 80px rgba(0, 0, 0, 0.5);
}

.botones {
  width: 40%;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  margin: 10px;
  margin-bottom: 0px;
}

button {
  letter-spacing: 2px;
  font-weight: bold;
}

/*cursor text*/
input:-moz-read-only {
  cursor: default;
  background: white !important;
}

input:read-only:focus {
  border-color: #ced4da;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input:read-only:hover {
  cursor: text;
}

::placeholder {
  color: black !important;
}

footer {
  background-color: rgba(0, 0, 0, 0.05);
}

footer div a {
  color: white !important;
  text-decoration: none;
  letter-spacing: 3px;
  opacity: 0.7;
  text-shadow: 3px 0px 7px rgba(13, 25, 65, 0.8), -3px 0px 7px rgba(30, 48, 99, 0.8), 0px 4px 7px rgba(57, 86, 216, 0.8);
  transition: all 0.5s;
}

footer div:hover{
  transform: scale(1.1);
}

.visit-counter {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 9999;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }

  .visit-counter:hover {
    opacity: 1;
  }

  /* Aseguramos que el contador no herede estilos del footer */
  footer .visit-counter,
  footer .visit-counter * {
    all: unset;
  }

/*RESPONSIVE*/
/*Desde la anchura 0px hasta la anchura 1200px de pantalla va haber estos estilos*/
@media (max-width: 1200px) {
  /*SE EJECUTARAN ESTOS ESTILOS*/
  label {
    display: block !important;
    margin: 0 auto;
    text-align: center;
  }
  .caja {
    width: 80%;
    height: auto;
  }
  #botones {
    padding-top: 0px;
  }
  .botones {
    margin-top: 0px;
    margin-bottom: 10px;
    width: 60%;
  }
}
@media (max-width: 500px) {
  .botones {
    width: 50%;
  }
  h1 {
    font-size: 40px !important;
  }
}

/*# sourceMappingURL=styles.css.map */
