html{
    font-family: 'Karantina', cursive;
}
body{
    width: 100vw;
    height: auto;
    overflow-x: hidden;
}
header{
    width: 100vw;
    height: auto;
    margin-top: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    text-align: center;
    color: #E43131;
    flex-direction: column;
}
header h2{
    font-size: 60px;
    margin: 0;
}
header h1{
    color: black;
    margin-top: 0;
}
header p{
    font-family: 'Source Sans Pro', sans-serif;
    color:black;
    margin: 0;
}
.mainwrapper{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content{
    width: 200px;
    height: 950px;
    font-family: 'Source Sans Pro', sans-serif;
}
.yaAlta{
    display: flex;
    justify-content: center;
    align-items: center;
}
.encuestaMK{
    width: 100%;

    margin: 0;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.ticket{
    width: 350px;
    position: fixed;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

input[type=text], select {
    width: 350px;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
input[type=number], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  input[type=submit], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .selector{
      width: 100%;
      display: flex;
      justify-self: center;
      align-items: center;

      flex-direction: column;
  }
.btnSlector{
    width: 250px;
    height: 75px;
    font-size: 40px;

    margin-bottom: 15px;
    border: none;

    background-color: #E43131;
    color: white;

    text-transform: uppercase;
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);

}
.btnSlector:hover{
    cursor: pointer;
    transform: scale(1.1);
}

  @media (max-width: 300px) {
    .ticket{
        display: none;
    }s
    header h2{
        font-size: 90px;
        text-align: center;
    }
    .content{
        width: 100%;
        padding: 15px;
    }
  }
  
  /* main.css */

/* Estilos para el encabezado pequeño */
.small-header {
    padding: 10px 0;  /* Reducir el espacio de relleno */
    text-align: center;
}

.small-header img {
    width: 100px;  /* Reducir el tamaño de la imagen */
}

.small-header h2 {
    font-size: 24px;  /* Reducir el tamaño de la fuente del título */
    margin: 0;  /* Eliminar el margen para un ajuste más preciso */
}
