@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Orbitron:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700&family=Oswald:wght@500&family=League+Spartan:wght@700&display=swap');

:root {
    --red-1: #b21b1b;   /* rojo claro */
    --red-2: #8b0f0f;   /* rojo medio */
    --red-3: #2b0a0a;   /* rojo oscuro */
  
    /* textura SVG tipo “grano” */
    --noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='f'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23f)' opacity='0.04' /></svg>");
    --default-background-color: white;
    --default-color: rgb(255, 255, 255);
}

*{
    font-family: 'Barlow Condensed','Bebas Neue', sans-serif,'Josefin Sans', 'Pacifico', 'sans-serif';
    text-transform: none; /* esto no cambia nada */

    color: var(--default-color);
    padding: 0;
    margin: 0;
}

.container{
    font-family: 'Pacifico';
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: bold;
    min-height: 100vh;

    background-image:
      radial-gradient(ellipse at center, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 70%, rgba(0,0,0,0.75) 100%), /* viñeta */
      linear-gradient(180deg, var(--red-1) 0%, var(--red-2) 45%, var(--red-3) 100%), /* degradé */
      var(--noise); /* textura de grano */
    background-blend-mode: normal, normal, overlay;
    background-size: cover, cover, 200px 200px;
}

h1{
    font-size: 90px;
    letter-spacing: 3px;
    margin: 10px 0;
}

h2{
    font-size: 80px;
    letter-spacing: 3px; 
    margin: 10px 0;
    text-align: center;
}
h3{
    font-size: 40px;
    letter-spacing: 3px; 
    text-align: center;
}
h4{
    font-size: 28px;
    letter-spacing: 2.7px; 
    text-align: center;
}

.button{
    margin: 10px 0;
    padding: 10px;
    font-size: 25px;
    border-radius: 10px;

    background-color: red;
    border-color: black;
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.6); /* Sombra sutil */
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
  background-color: darkred;
  transform: scale(1.05);
}

form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.form-menu{
    display: flex;
    align-items: center;
    justify-content:space-between;
    flex-direction:row;
    margin: 10px 0;
    width: 80%;
    min-width: 320px;
}

.form-input{
    color: black;
    font-size: 18px;
    text-align: center;
}

.input-numero{
    width: 30px;
}

.form-p{
    font-size: 20px;
}

.img-centro{
    height: 200px;
    margin: 20px 0;
}

.form-input option{
    background-color: white;
    color: black
}
select:hover {
  background: var(--red-2);
}

.div-menu{
    display: flex;
    align-items: center;
    justify-content:space-evenly;
    flex-direction:row;
    min-width: 150px;
}

    

button a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width:440px){
    h1{
        font-size: 70px;
    }
    h2{
        font-size: 60px;
    }
    h3{
        font-size: 30px;
    }
    h4{
        font-size: 24px;
    }
    .form-p{
        font-size: 18px;
    }
    .form-input{
        font-size: 16px;
    }
    .form-menu{
        min-width: 250px;
    }
}

@media (max-width:370px){
    h1{
        font-size: 60px;
    }
    h2{
        font-size: 50px;
    }
    h3{
        font-size: 26px;
    }
    h4{
        font-size: 20px;
    }
    .form-p{
        font-size: 16px;
    }
    .form-input{
        font-size: 15px;
    }
    
    .img-centro{
        height: 180px;
    }
    .form-menu{
        min-width: 230px;
    }
    
}

@media (max-width:350px){
    h1{
        font-size: 50px;
    }
    .img-centro{
        height: 160px;
    }
    .button{
        padding: 8px;
        font-size: 22px;
    }
}