:root {
    --blanco: #ffffff;
    --oscuro: #212121;
    --primario: #ffc107;
    --secundario: #0097a7;
    --gris: #757575;
    --funte-principal: 3.8rem;
    --color-letras: rgb(50, 25, 250);
    --fondo-celda: #f1e4ef;
    --ampituDelInput: 6rem
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: "Fira", sans-serif;
}

h1 {
    font-size: 3.8rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {

    font-size: 1.8rem;
}

h1,
h2,
h3 {
    text-align: center;
}

.blink_me {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}


.contenedor {
    max-width: 128rem;
    margin: 0 auto;
}


.nav-bg {

    background-color: var(--secundario);
}

.navegacion-principal {

    display: flex;
    flex-direction: column;

}

.navegacion-principal a:hover {
    background-color: var(--primario);
    color: var(--oscuro);
}




.navegacion-principal a {
    display: block;
    text-align: center;
    color: var(--blanco);
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem;
}

.sombra {
    color: var(--secundario);
    -webkit-box-shadow: 2px 0px 13px 0px rgba(176, 173, 176, 0.69);
    -moz-box-shadow: 2px 0px 13px 0px rgba(176, 173, 176, 0.69);
    box-shadow: 2px 0px 13px 0px rgba(176, 173, 176, 0.69);
    background-color: var(--blanco);
    padding: 2rem;
    border-radius: 1rem;
    width: auto;
    height: auto;
    margin: 1.5rem;
}




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;
}

/* todo esto es para el botón*/

.w-100 {
    width: 100%;
}

.alinear-derecha {
    display: flex;
    justify-content: flex-end;
}

.boton {
    background-color: var(--secundario);
    color: var(--blanco);

    margin-top: .1rem;
    font-size: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;

    border-radius: .5rem;
    width: 100%;
    text-align: center;
    border: none;
}

.boton:hover {
    cursor: pointer;
}




@media (min-width: 768px) {
    .w-100 {
        width: 100%;
    }

    .sombra {
        width: auto;
        height: 80%;

    }

    .reja {
        font-size: 2.5rem;

    }

    .boton {
        margin-bottom: .1rem;
    }

}


hr {
    width: auto;

}

input {
    width: 100%;
}




@media(min-width:768px) {
    .navegacion-principal {
        flex-direction: row;
        justify-content: space-between;
    }


    .aver {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
    }

    .boton {
        width: 100%;
    }
}

canvas {
    background-color: rgb(155, 250, 250);
}