body {
    background-color: rgb(32 33 45);
    margin: 0px;
}

#divContainer {
    display: flex;
    flex-direction: column;
    padding: 5px;
}

#divTitulo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.titulo {
    font: bold 50px Calibri ;
    color: rgb(177, 194, 177);
    /* text-shadow: 5px 3px 14px gray; */
    margin: 0 auto;
    transition: text-shadow 0.8s ease;
}

#logo {
    width: 50px;
    height: 50px;
}

#link {    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    scale: 1;
    transition: transform 0.8s ease;
}

#link:hover {
    transform: scale(1.2);
    /* transition: transform 0.8s ease; */
    animation: scaleBounce .9s ease-in-out forwards;
}

#link:hover .titulo {
    text-shadow: 5px 3px 14px gray;
}

@keyframes scaleBounce {
    0% {
        transform: scale(1);
    }
    33% {
        transform: scale(1.1);
    }
    66% {
        transform: scale(1.05);
    }  
    100% {
        transform: scale(1.2);
    }
}

@keyframes scaleBounceReverse {
    0% {
        transform: scale(1.2);
    }
    33% {
        transform: scale(1.05);
    }
    66% {
        transform: scale(1.10);
    }
    100% {
        transform: scale(1);
    }
}

#banderas {
    display: flex;
    gap: 10px;
    margin-right: 20px;
    align-self: flex-end;
}

#banderas img {
    width: 60px;
    height: 40px;
    transition: transform 0.8s ease, box-shadow 0.8s ease;
}

#banderas img:hover {
    transform: scale(1.2);
    box-shadow: 0px 0px 35px 1px white;
    transition: transform 0.8s ease, box-shadow 0.8s ease;
}

p {
    font: normal 20px Calibri;
    color: grey
}

a {
    text-decoration: none;
}

#divCentral {
    display: flex;
    flex-direction: row;
    width: 100%; 
}

#divSecciones {
    flex-basis: 75%;
}

#div1, #div2, #div3 {
    padding-bottom: 0px;
    padding-left: 35px;
    align-self: stretch;
    cursor: pointer;
    margin-bottom: 40px;
}

.secciones {
    font: italic 30px Calibri;
    color : rgb(177, 194, 177);
    transition: color 0.7s ease;
}

.secciones:hover{
    color: rgb(255, 62, 62);
    transition: color 0.7s ease;
}

#icono1, #icono2, #icono3 {
    padding-left: 15px;
    width: 17px;
    height: 17px;
    transition: transform 0.5s ease;
    transform-origin: 70% 50%;
}

.texto {
    padding-top: 5px;
    max-height: 0px;
    opacity: 0;
    transition: opacity .4s ease, max-height 0.3s ease;
}

.texto.visible {
    max-height: 150px;
    opacity: 1;
    transition: opacity 1.8s ease, max-height 2s ease;
}

.rotar {
    transform: rotate(-90deg);
    transform-origin: 70% 50%;
    transition: transform 0.5s ease;
}

#divLateral {
    display: flex;
    flex-direction: column;
    flex-basis: 25%;
    color : rgb(177, 194, 177);
}

#tituloCorreo {
    font: bold 20px Calibri;
    color: rgb(177, 194, 177);
    text-align: center;
    padding-top: 15px;
}

#formularioCorreo {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    padding-left: 5px;
    align-items: center;

}
input[type="email"]::placeholder {
    color: rgb(0, 0, 0);
    text-align: center;
    background-color: silver;
}

#correo {
    width: 40%;
}

.containerCorreo {
    display: flex;
    padding: 1em;
    text-align: center;
    vertical-align: middle;
}

.btnfos {
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
    max-width: 160px;
    margin: 0 auto 2em;
    position: relative;
    text-transform: uppercase;
    width: 100%;
    border: 1px solid;
    overflow: hidden;
}

.btnfos span {
    z-index: 20;
    padding: 7px;
}

.btnfos:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    width: 50px;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    transform: rotate(35deg);
    z-index: -10;
}

.btnfos:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

#apuestasF1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

#apuestasF1 span {
    font: bold 34px Calibri;
    color: rgb(177, 194, 177);
}

#formularioApuestas span, #formularioApuestas2 span {
    font: bold 16px Calibri;
    color: rgb(177, 194, 177);
}

/* fondo rojo al value 2 y 3 del select */
.opcion select option[value="2"],
.opcion select option[value="3"] {
    background-color: #15185f;
    color: white;
}

.opcion select option[value="4"],
.opcion select option[value="5"] {
    background-color: #00f5d3;
}

.opcion select option[value="6"],
.opcion select option[value="7"] {
    background-color: #fe0000;
}

.opcion select option[value="8"],
.opcion select option[value="9"] {
    background-color: #fd8000;
}

.opcion select option[value="10"],
.opcion select option[value="11"] {
    background-color: #00594f;
}

.opcion select option[value="12"],
.opcion select option[value="13"] {
    background-color: #ff56e3;
}

.opcion select option[value="14"],
.opcion select option[value="15"] {
    background-color: #0000fe;
}

.opcion select option[value="16"],
.opcion select option[value="17"] {
    background-color: #1534cc;
}

.opcion select option[value="18"],
.opcion select option[value="19"] {
    background-color: #00e701;
}

.opcion select option[value="20"],
.opcion select option[value="21"] {
    background-color: #ffffff;
}

#botonComprobacion {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

#boton {
    font: bold 16px Calibri;
    color: rgb(177, 194, 177);
    background-color: rgb(32 33 45);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

#divPiePagina {
    align-self: center;
}

#divPiePagina span {
    font: bold 14px Calibri;
    color: rgb(177, 194, 177);
}