@font-face {
    font-family: 'VolkswagenSerial';
    src: url('../../../assets/fonts/Volkswagen Serial.otf');
}
@font-face {
	font-family: 'VolkswagenSerialItalic';
    src: url('../../../assets/fonts/Volkswagen Serial Italic.otf');
}
@font-face {
    font-family: 'VolkswagenBlack';
    src: url('../../../assets/fonts/Volkswagen Serial Black.otf');
}
@font-face {
    font-family: 'VolkswagenBold';
    src: url('../../../assets/fonts/Volkswagen Serial Bold.otf');
}
@font-face {
    font-family: 'VolkswagenExtraBold';
    src: url('../../../assets/fonts/Volkswagen Serial ExtraBold.otf');
}

* {
    margin: 0;
    padding: 0;
    /* box-sizing: content-box; */ /* No incluye borde, relleno y/o imagen en las cajas CSS */
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}

body {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}
/*----------Index---------*/
.img-full {
	width: 100vw;
}
.img-mod {
	width: 75%;
}
.img-mid {
	width: 50%;
}
.img-small {
	width: 25%;
}
/*----------FinIndex---------*/
h1, h2, h3 {
    font-family: 'VolkswagenBlack';
    font-size: 4rem;
    text-decoration: none;
}

h1 {
    letter-spacing: 10px;
    text-shadow: /*0 0 15px #00ff00,
    0 0 30px #ffffff;*/
    0px -2px 0px #000000, /*Arriba*/
    2px -2px 0px #000000, /*Derecha-Arriba*/
    2px 0px 0px #000000, /*Derecha*/
    2px 2px 0px #000000, /*Derecha-Abajo*/
    0px 2px 0px #000000, /*Abajo*/
    -2px 2px 0px #000000, /*Izquierda-Abajo*/
    -2px 0px 0px #000000, /*Izquierda*/
    -2px -2px 0px #000000, /*Izquierda-Arriba*/
    4px 4px 10px #00000050; /*Tamaño y difuminado.*/
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
    letter-spacing: 2px;
    text-shadow: 0.5px 0.5px 0.5px #000000;
}

p {
    font-family: 'VolkswagenBold';
    font-size: 1rem;
    text-decoration: none;
}

.p-Titulo {
    grid-area: 'head head';
    display: flex;
    padding-bottom: 1rem;
    justify-content: center;
}

a {
    color: #FFFFFF;
    text-decoration: none;
}

a:link {
    color: #FFFFFF;
    text-decoration: none;
}

a:visited, a:active, a:hover {
    color: #FFFFFF;
}

hr {
	width: 100%;
    border-color: #0000AA;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#rowmenu {
    width: 100%;
    height: 64px;
}

#rowtitulo {
    background-color: #00F0FF20;
    width: 100%;
    height: fit-content;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
    h3 {
        color: #FFFFFF;
        letter-spacing: 2px;
        text-shadow: 0 0 2px #0000AA;
        text-align: center;
    }
}

#rowscreen {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    /*flex-direction: column;*/
}

#copyright {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    height: fit-content;
    background-color: #00AA00;
    color: #ffffff;
    font-size: 15px;
    text-align: center;
    letter-spacing: 2px;
    padding: 0;
    p {
        font-family: "VolkswagenBold";
    }
}

.stickyBottom {
    position: fixed !important;
    bottom: 0;
    z-index: 2;
}

/*----------Configurar Inputs---------*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type=number], input[type=text],
input[type=email], input[type=date],
select, textarea {
    background-color: #33669920;
    color: #000000;
    height: 4rem;
    margin: 0px;
    margin-bottom: 1rem;
    padding: 1rem;
    font-family: 'VolkswagenSerial';
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #00000050;
    border-radius: 15px;
    box-sizing: border-box;
    outline: none;
}

input[type=number]:hover,
input[type=text]:hover, input[type=email]:hover,
input[type=date]:hover, select:hover, textarea:hover,
input[type=number]:focus,
input[type=text]:focus, input[type=email]:focus,
input[type=date]:focus, select:focus, textarea:focus {
    border: none;
    border-bottom: 1px solid #000000;
}

select {
    background-image: url('../img/flechaselect.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: calc(50% - 2rem);
    margin: 0 1rem 0 1rem;
    margin-bottom: 1rem;
}

select option {
    background-color: #33669920;
    color: #000000;
    font-size: 24px;
    border-bottom: 1px solid #000000;
}

input[type=submit], button {
    background-color: #00AA00;
    color: #FFFFFF;
    width: 100%;
    height: 4rem;
    margin: 0px;
    padding: 0px;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px #FFFFFF;
    font-family: 'VolkswagenBold';
    font-size: 2rem;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
	border: none;
    clear: both;
}

input[type=submit]:hover, button:hover {
    background-color: #FFFFFF;
    color: #00AA00;
    box-shadow: inset 0 0 0 2px #00AA00;
	text-decoration: none;
    transition: 500ms;
}

textarea {
    width: 100%;
    height: 20rem;
    resize: none;
}
/*----------FinInputs---------*/

#contenedorCard {
    /* background-color: #00F0FF20; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
	height: auto;
}

#contenedorCard div a input[type=submit] {
    width: 36rem;
    height: 100px;
    border: none;
    border-radius: 10px;
    margin: 10px 1rem;
}
