body {
    background-color: #0882FC;
    font-family: Arial, Helvetica, Sans-Serif;

}

/* Estilos para el mensaje de error */
.error-message {
    color: #EFFBFB;
    /* Ocultar inicialmente */
    display: none;
}


/* Estilos para el mensaje de bienvenida */
#wellcome-message {
    color: #EFFBFB;
    position: absolute;
    top: 10em;
    right: 2.5em;
    font-size: 0.9em;
    /* Ocultar inicialmente */
    display: none;
}

.description {
    margin-top: 1em;
    /*font-size: 1.7em;*/
    line-height: 1.4;
    text-align: justify;
    display: grid;
    place-items: center;
}

.description2 {
    /* margin-top: 1em;*/
    font-size: 1.5em;
    line-height: 1.4;
}

.description3 {
    /* margin-top: 1em;*/
    font-size: 1em;
    line-height: 1.0;
    text-align: left;
}

.game {
    float: left;
  /*  width: 45%;*//*para que sean 2 columnas*/
  max-width: 100%; /* Asegura que cada .game ocupe su columna completamente */
    margin-bottom: 1.6em;
    padding: 1.2em;
    background-color: white;
    border-radius: 1em;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.game:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
    z-index: 2;
}


.games-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas con ancho igual */
    gap: 20px; /* Espaciado entre las columnas */
    padding: 20px; /* Ajusta el relleno según sea necesario */
}


.games-container2,
.games-container-about {
    /*no tocar*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    /*background-color: #f1c40f;*/

}

.games-container {
    margin-top: 0.5em;
}

.games-container-about {
    margin-top: 9.3em;
}


.games-container2 {
    margin-top: 1em;
}

.benefits-container2 {
    display: flex;
    flex-direction: row;
    /* Por defecto, en horizontal */
    flex-wrap: wrap;
    /* Permite que los elementos se envuelvan cuando no hay suficiente espacio */
    justify-content: space-around;
    margin-top: 1em;
    /*background-color: red;*/
}

.benefits-container {
    margin-top: 1em;
    /*background-color: rgb(28, 212, 59);*/
    width: 47%;
    /* O ajusta el ancho que desees */
    box-sizing: border-box;
    /* Incluye el relleno y el borde en el ancho total */
    padding: 2.5em;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid black;
}


.game2 {
    float: left;
    width: 40%;
    margin: 1.2em;
    padding: 4em;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid black;
}

.game3 {
    float: left;
    width: 94%;
    margin: 1.2em;
    padding: 2em;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid black;
}

.intro {
    float: center;
    width: 94%;
    margin: 11em auto 0.6em auto;
    /* top, right, bottom, left */
    /*wd*/

    padding: 1em;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid black;

}

.message {
    float: center;
    margin: 1em auto 0.8em auto;
    /* top, right, bottom, left */

    padding: 0.5em;
    background-color: white;
    border-radius: 2em;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid black;

}

.game img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}

.game2 img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}

.play-button-link{
    position: relative;
 /* background-color: #0d6efd;*/
    color: white;
    border: none;
    padding: 0.6rem 0.9rem;
    border-radius: 0.2rem;
        cursor: pointer;
    z-index: 2;
    font-size: 1.2em;

}


.play-button,
.play-button2 {
    position: relative;
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 0.6rem 0.9rem;
    border-radius: 0.2rem;
    box-shadow: 4px 4px 6px rgba(15, 231, 231, 0.699);
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
    z-index: 2;
    font-size: 1.2em;
}
/*
.play-button-desplegable {
    background-color: #336699;
    box-shadow: none;
    z-index: 42;
}
*/

.play-button3 {

    background-color: #0d6efd;
    color: white;
    border: 1em;
    padding: 0.6rem 0.9rem;
    border-radius: 0.2rem;
    box-shadow: 4px 4px 6px rgba(15, 231, 231, 0.699);
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;

    font-size: 0.7em;
}

/* Agrega una clase para ocultar el botón */
.hide-button {
    display: none;
}


.play-button:hover {
    background-color: #0c52b3;
    transform: translateY(-2px);
    box-shadow: 5px 5px 8px rgba(252, 7, 7, 0.932);

}

.play-button2:hover {
    background-color: #0c52b3;
    transform: translateY(-2px);
    box-shadow: 5px 5px 8px rgba(252, 7, 7, 0.932);
    z-index: 2;
}

.play-button3:hover {
    background-color: #0c52b3;
    transform: translateY(-2px);
    box-shadow: 5px 5px 8px rgba(252, 7, 7, 0.932);

}

.contact {
    float: left;
    width: 40%;
    margin: 1em;
    padding: 4em;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid black;
    z-index: 1;
}

.register {
    position: relative;

    top: 180px;
    width: 40%;
    margin: 1em;
    padding: 3em;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid black;
    z-index: 1;
}


#contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

#register {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#contact h2,
#register h2 {
    text-align: center;
    margin-bottom: 20px;

}

#contact form,
#register form {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.form-group {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;

}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    line-height: 1.5;
}

.form-group textarea {
    height: 150px;

}

/*
button {
    background-color: transparent;
    font-size: 1rem;
    /*padding: 1rem 1rem;*/
/* aeroventilas nuestro botón */
/*border: 1px solid #eee; /* nos ayudará con el efecto */
/*   border-radius: .5rem;
    cursor: pointer;
    /*transition: all 1s ease; /* todas las trancisiones durarán un segundo */
/*   box-shadow: .2em .2rem 1rem #3fa5e9,
    /*       -.2em -.2rem 1rem #e92323

/*   }
    button:hover {
    box-shadow: .2em .2rem 1rem #f32c2c
        , -.2em -.2rem 1rem #3c6ef7
    }
    button:active {
    box-shadow: inset .2rem .2rem 1rem #fff
        , inset -.2rem -.2rem 1rem #ccc
    }
*/


button[type="submit"] {
    padding: 10px 5px;
    background-color: #5293d4;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    z-index: 2;
}

button[type="submit"]:hover {
    background-color: #f1c40f;
    z-index: 2;
}

.register-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 60%;
    margin: 0 auto;
    margin-top: 170px;
    Overflow: overlay;
    z-index: 3;
}

#benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    z-index: 2;
}

#benefits .game,
#contact .game,
#register .game {
    float: left;
    margin-top: 2em;
    width: 100%;
    margin-left: 1em;
    margin-right: 1em;
    padding: 1.3em;
    background-color: white;
    border-radius: 1.5em;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);

}

#benefits h2 {
    /*font-size: 32px;*/
    margin-bottom: 1.5em;
    color: #151745;
    text-align: center;
}

#benefits p {
    /*font-size: 18px;*/
    line-height: 1.5;
    margin-bottom: 1.5em;
    color: #000000;
    text-align: justify;
    z-index: 2;
}

#benefits ul {
    list-style: none;
    margin-bottom: 2em;
    color: #2B33E5;
}

#benefits ul li {
    /*color descripciones */
    /*font-size: 18px;*/
    line-height: 1.5;
    margin-bottom: 0.9em;
    color: #251E1D;
    text-align: justify;
}

#benefits ul li strong {
    font-weight: bold;
    color: #000000;
}

/*efecto titulo*/
h1 {
    color: white;
    font: normal 1em Varela Round, sans-serif;
    padding: 2px;
    border: 4px;
    letter-spacing: 2px;
    text-align: center;
    top: 1%;
    width: 100%;
    transition: color 0.3s ease-in-out;
    animation: fadeIn 1s ease-in-out;
}

h1:hover {
    color: #1b1b1a;
    /* Cambia el color al pasar el ratón sobre el texto */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    color: rgb(29, 28, 28);
    padding: 2px;
    border: 4px;
    letter-spacing: 5px;
    text-align: center;
    top: 1%;
    width: 100%;
    animation: move linear 2000ms infinite;
}

/*efectos para el menu de navegacion*/
h3 {
    margin: 5px;
    text-align: center;
}

.swal2-icon {
    width: 5em;
    height: 5em;
    margin: 1.7em auto 0.6em;
    border: 0.25em solid rgba(0, 0, 0, 0);
    border-radius: 50%;
    line-height: 5em;
}

.menu {
    list-style: none;
    display: flex;
}

.menu>li {
    margin-right: 0em;
    /* Ajusta el espaciado entre elementos si es necesario */
    position: relative;
    padding: 0.3em;
}

.play-button-desplegable {
    position: relative;
    background-color: #00000000;
    color: white;
    border: none;
    padding: 0.6rem 0.9rem;
    border-radius: 0.2rem;
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
    z-index: 42;
    font-size: 1.2em;
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #336699;
    border-radius: 1em;

}

.menu>li:hover .submenu {
    display: block;

}

.submenu li {
    margin-bottom: 0.1em; /* Ajusta el margen inferior según tus preferencias */
    padding:.0.1em ;
    font-size: 0.7em;
}


.submenu li a {
    white-space: nowrap;
    padding: 0.1em;
}



nav {

    background-color: #336699;
    /*color: #ffffff;*/
    padding: 0.2em;
    margin-left: 1.0em;
    margin-right: 1.0em;
    border-radius: 1em;
    margin-bottom: 2px;


}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    /*es muy importante para la dispocicion de botones en nav*/
    align-items: center;
    list-style: none;
    text-align: center;
    padding-inline-start: 0.1em;
    padding-inline-end: 0.1em;
    /*margin: 0.6em;*/

}

/*nav ul li {
    /*margin: 0 5px;*/
/*   z-index: 2;
    box-shadow: 1px 1px 1px hsl(199, 89%, 64%),
    2px 2px 2px hsl(175, 81%, 45%),
    3px 3px 3px hsl(189, 85%, 40%),
    4px 4px 4px hsl(202, 92%, 44%),
    5px 5px 5px hsl(207, 78%, 51%),
    6px 6px 6px hsl(202, 92%, 44%),
    10px 10px 10px hsl(207, 96%, 39%),
    -.2em -.2rem 1rem #09cf73;

border-radius: 0.5em;
padding: 0.5em;
}*/

nav ul li {
    z-index: 2;
    border-radius: 0.5em;
    padding: 0.3em;
    position: relative;
    box-shadow: 1px 1px 1px hsl(199, 89%, 64%),
        2px 2px 2px hsl(175, 81%, 45%),
        3px 3px 3px hsl(189, 85%, 40%),
        4px 4px 4px hsl(202, 92%, 44%),
        5px 5px 5px hsl(207, 78%, 51%),
        -.2em -.2rem 1rem #09cf73;
    transition: box-shadow 0.5s ease-in-out;
    animation: moveShadows 2s infinite alternate;
    margin-right: 0.3em;
}

@keyframes moveShadows {
    0% {
        box-shadow: 1px 1px 1px hsl(199, 89%, 64%),
            2px 2px 2px hsl(175, 81%, 45%),
            3px 3px 3px hsl(189, 85%, 40%),
            4px 4px 4px hsl(202, 92%, 44%),
            5px 5px 5px hsl(207, 78%, 51%),
            -.2em -.2rem 1rem #09cf73;
    }

    100% {
        box-shadow: -1px -1px 1px hsl(199, 89%, 64%),
            -2px -2px 2px hsl(175, 81%, 45%),
            -3px -3px 3px hsl(189, 85%, 40%),
            -4px -4px 4px hsl(202, 92%, 44%),
            -5px -5px 5px hsl(207, 78%, 51%),
            .2em .2rem 1rem #09cf73;
    }
}

nav ul li a {
    text-decoration: none;
    color: #EFFBFB;
    /*font-size: 32px;*/
    font-size: 1.3em;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease-in-out;
    z-index: 199;

}

nav ul li a:hover {
    /* Cambia el color del enlace al pasar el cursor */
    color: #f1c40f;
    z-index: 199;
}

nav ul li a::before,
nav ul li a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #f1c40f;
    /* Color del resaltado */
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
    z-index: 199;
}

nav ul li a::before {
    transform-origin: right;
    transition-delay: 0.1s;
    z-index: 199;
}

nav ul li a:hover::before,
nav ul li a:hover::after {
    transform: scaleX(1);
    z-index: 199;
}



/* ---- particles.js container ---- */
.count-particles {
    background: #000022;
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #f0310f;
    /*font-size: .8em;*/
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats,
.count-particles {
    user-select: none;
    margin-top: 5px;
    margin-left: 5px;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}

/* ---- particles.js container ---- */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    /*background-image: url('');*/
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    z-index: 1;

    /* overflow: hidden;*/
}



/*prueba de otro efecto*/
.neon-text {
    font-size: 1.5em;
    color: rgb(42, 14, 143);
    text-shadow: 0 0 0.5em rgba(0, 255, 255, 0.8), 0 0 1.2em rgba(0, 255, 255, 0.8), 0 0 1.0em rgba(0, 255, 255, 0.8);
    transition: text-shadow 0.5s ease-in-out;
}

.neon-text:hover {
    text-shadow: 0 0 2px rgba(0, 255, 255, 0.8), 0 0 0.7em rgba(0, 255, 255, 0.8), 0 0 0.8em rgba(0, 255, 255, 0.8);
}




.mostrarFormulario {
    cursor: pointer;
    text-decoration: none;
    color: #EFFBFB;
    font-size: 1.3em;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease-in-out;

}

.nosotros {
    position: absolute;
    margin-top: 5em;
    /*fondo trasparente  del div*/
    background-color: rgba(0, 0, 0, 0);

}

/* Estilos para el formulario de inicio de sesión */
.formulario-sesion {
    display: none;
    z-index: 9999;
    position: absolute;
    top: 3em;
    /* Ajusta la posición vertical según tus necesidades */
    width: 23em;
    right: -3.5em;
    /* Ajusta la posición horizontal según tus necesidades */
    background-color: #2AAED8;
    padding: 0.5em;
    border: 2px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 1em;
    background-image: url("../img/fondo-formulario3.jpg");
    color: #ffffff;

}

.iniciar_sesion {
    margin-top: 0;
    font-size: 1.3em;
    font-weight: bold;
    color: #ffffff;
    z-index: 3;
}


.formulario-sesion input[type="text"],
.formulario-sesion input[type="email"],
.formulario-sesion input[type="password"] {
    width: 70%;
    padding: 0.8em;
    margin-bottom: 0.8em;
    border: 1px solid #ccc;
    border-radius: 4px;

}

.formulario-sesion .opcion-enlace {
    width: 100%;
    text-align: right;
    margin-top: 0.9em;

}

.formulario-sesion .opcion-enlace a {
    text-decoration: none;
    color: #ffffff;
    margin: 0.1em;



}

/* Estilos para el botón de cierre */
.cerrar-icono {
    position: absolute;
    top: 0.9em;
    right: 0.9em;
    /*font-size: 24px;*/
    cursor: pointer;
    color: #fdf7f7;
    background: none;
    font-size: 1.5em;
    ;
    border: none;

}

/* Estilos para el botón de "Ingresar" en la barra de navegación */
.mostrarFormulario2 {
    background-color: #336699;
    color: #ffffff;
    border: none;
    /* padding: 10px 20px;*/
    /*font-size:calc(30% – 110px);*/
    /*font-size:32px;*/
    cursor: pointer;
    z-index: 9999;
}

#mostrarFormulario:hover {
    /* Cambia el color del enlace al pasar el cursor */
    color: #f1c40f;
}

#mostrarFormulario::before,
#mostrarFormulario::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #f1c40f;
    /* Color del resaltado */
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;

}

#mostrarFormulario:hover::before,
#mostrarFormulario:hover::after {
    transform: scaleX(1);
    z-index: 3;
}

#mostrarRegistro {
    background-color: #336699;
    color: #ffffff;
    border: none;
    /* font-size: 16px;*/
    cursor: pointer;
}

/* Estilos para el logotipo o icono */
.logo {
    /* Ajusta el tamaño según tus necesidades */
    width: 60px;
    /* Centra el logotipo o icono horizontalmente */
    margin: 1px auto;
    display: block;
}

.redes {
    position: relative;
    right: 1%;
    align-items: end;
    /* Centra el logotipo o icono horizontalmente */
    margin: 1px auto;
    display: block;
    width: 90px;
    z-index: 7;

}



/* Navigation Bar */
.navbar {
    padding: 20px 10px 20px 0px;
    background-color: #28a7e9;
    /*transition: all ease 0.4s;*/

}

.navbar-brand {
    /*font-size: 22px;*/
    color: white !important;
    z-index: 2;
}

.navbar .navbar-nav li a {
    /*font-size: 16px;*/
    color: white;
    z-index: 2;
}

/* Animation */
/*.animate {
    padding: 0px 10px 0px 0px;
    transition: all ease 0.4s;
}*/

/* Jumbotron */
.jumbotron {
    margin-top: 2em;
    margin-bottom: 2px;
    background-color: #ffffff;
}

.container .jumbotron,
.container-fluid .jumbotron {
    border-radius: 5px;
}

.navbar-default {
    background-color: #336699;
    border-color: #e7e7e7;
    border-radius: 10px;
    z-index: 2;
}

.navbar-brand {
    float: left;
    height: 50px;
    /*font-size: 40px;*/
    line-height: 20px;
    z-index: 2;
}

header {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    /*height: 12em;*/
    background-color: #0882FC;
    /*fondo color*/
    background-image: url("../img/particula2.png");
    /*esta imagen es transparente*/
    /* background-color: transparent;/*fondo trasparente */
    z-index: 2;

}

header img {
    background-image: url("../img/particula2.png");
    z-index: 3;
}




/*#top {
    height: 50px;
}*/


.inicioBtn {
    font-weight: bold;
    /* Fuente en negrita o bold */
    position: fixed;
    bottom: 5%;
    right: 5px;
    transition: all 300ms ease 0ms;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    cursor: pointer;
}



.scroll-to-top {
    right: 0.3em;
    border: none;
    position: fixed;
    bottom: 3em;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
    z-index: 999;
    color: #EFFBFB;
    background-color: #20ced4;
    border-radius: 5px;
    padding: 7px;
    visibility: visible;
    opacity: 1;
    cursor: pointer;
}







.filler {
    min-height: 10px;

}

#ifplay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

/*efectos para cargar las imagenes de los juegos*/
@keyframes show {
    from {
        opacity: 0;
        scale: 25%;
    }

    to {
        opacity: 1;
        scale: 100%;
    }
}

img {
    view-timeline-name: --revealing-image;
    animation-name: show;
    animation-fill-mode: both;
    animation-timeline: --revealing-image;
    animation-range: entry 25% cover 50%;
    text-align: center;
}

.shadow {
    box-shadow: 1px 1px 1px hsl(199, 89%, 64%),
        2px 2px 2px hsl(175, 81%, 45%),
        3px 3px 3px hsl(189, 85%, 40%),
        4px 4px 4px hsl(202, 92%, 44%),
        5px 5px 5px hsl(207, 78%, 51%),
        6px 6px 6px hsl(202, 92%, 44%),
        10px 10px 10px hsl(207, 96%, 39%),
        -.2em -.2rem 1rem #09cf73;
}


footer {
    position: relative;

    z-index: 3;
}

.swal2-container.swal2-center>.swal2-popup {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: center;
}

.swal2-title {
    position: relative;
    max-width: 90%;
    margin: 0;
    padding: 0.8em 1em 0;
    color: inherit;
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
    text-transform: none;
    word-wrap: break-word;
}

.name {
    position: relative;
    margin: 0px;
    width: 100%;
    height: 60%;
    background-color: transparent;
    /*background-color: #0882FC;*/

}

.outlined-text {
    font-size: 2em;
    color: #fff;
    /* Color del texto */
    -webkit-text-stroke: 2px #000;
    /* Ancho y color del contorno */
}



/*para private_menu*/
.contieneBoton {
    display: flex;
    justify-content: center;
}


.mostrarPrivateMenu {
    background-color: #336699;
    color: #ffffff;
    border: none;
    /* padding: 10px 20px;*/
    /*font-size:calc(30% – 110px);*/
    font-size: 32px;
    cursor: pointer;
    width: 200px;
    left: 50%;
}


.dropdown {
    display: inline-block;
    position: absolute;
    top: 30%;
    background-color: red;
    z-index: 7;
    font-size: 24px;

    /*// display: flex;
     //   align-items: center;*/


}

.dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    overflow: auto;
    box-shadow: 0px 10px 10px 0px rgba(24, 230, 41, 0.548);
    font-size: 24px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    color: #fcfbfb;
    padding: 10px;

    text-decoration: none;
}

.dropdown-content a:hover {
    color: #fcf9f9;
    background-color: #3762f0;
}

/*formato para tabla show_user*/
table {
    border-collapse: separate;
    border-spacing: 5px;
    background: #81DAF5 bottom left repeat-x;
    color: #fff;
    font-size: 1.5vi;
    z-index: 2;
}

th {
    background: #f4f5f7;
    color: #111111;
}

td {
    background: #2586c7;
    color: #fbfbff;
}

td a {
    color: #fff;
    text-decoration: none;


}


footer {
    color: #EFFBFB;
    text-align: center;
}



/***************************************************
****************************************************
****************************************************/


/*media queris para dispositivos moviles*/
@media (orientation: portrait) {

    nav ul {

        justify-content: center;
        /*es muy importante para la dispocicion de botones en nav*/
        margin: 0.2em;

    }

    nav ul li {
        font-size: 1.0em;

    }

    header {

        height: 7em;
    }


    .mostrarFormulario {
        font-size: 1.0em;
    }

    nav ul li a {
        color: #ffffff;
        padding-bottom: 0px;
        text-decoration: none;
        font-size: 1.0em;
        font-weight: bold;
        transition: all 0.3s ease-in-out;
    }

    nav {
        /*font-size: 0.8em;*/
        margin: auto;
        text-align: left;
    }

    .logo {
        /* Ajusta el tamaño según tus necesidades */
        width: 50px;
        /* Centra el logotipo o icono horizontalmente */
        margin: 1px auto;
        display: block;
    }


    /* Estilos para el mensaje de bienvenida */
    #wellcome-message {

        position: absolute;
        top: 5em;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0.1em;
        font-size: 0.9em;
        /* Ocultar inicialmente */
        display: none;
        text-align: center;
    }

    h1 {
        font: normal 1em Varela Round, sans-serif;
        letter-spacing: 1px;
    }

    .formulario-sesion {
        right: -1.1em;
        padding: 0.5em;
        border-radius: 0.5em;
        background-image: url("../img/fondo-formulario3.jpg");

    }

    .games-container{/*no tocar*/
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        max-width: 100%;
        /*background-color: #f1c40f;*/
        }

    .games-container {
        margin-top: 1em;
    }

    .games-container-about {
        margin-top: 7em;
    }



    .benefits-container2 {
        flex-direction: column;
        /* Cambia a vertical cuando el ancho es menor a 600px */

    }

    .benefits-container {
        width: 100%;
        /* O ajusta el ancho que desees en vista vertical */
    }


    .game {
        width: 80%;
        margin-bottom: 1em;
        padding: 2em;
        background-color: white;
        border-radius: 1em;
        box-shadow: 0px 3px 1em rgba(0, 0, 0, 0.1);
    }

    .game2 {
        width: 40%;
        margin-bottom: 1em;
        margin-left: 1rem;
        padding: 2em;
        background-color: white;
        border-radius: 1em;
        box-shadow: 0px 3px 1em rgba(0, 0, 0, 0.1);
    }

    .game3 {
        width: 90%;
        margin-bottom: 1em;
        /*margin-left: 1rem;*/
        padding: 2em;
        background-color: white;
        border-radius: 1em;
        box-shadow: 0px 3px 1em rgba(0, 0, 0, 0.1);
    }


    .intro {
        float: center;
        width: 90%;
        margin: 8.3em auto 0.6em auto;
        /* top, right, bottom, left */


    }

    .message {
        float: center;
        /*  width: 80%;*/
        margin: 0.5em auto 0.3em auto;
        /* top, right, bottom, left */
        padding: 0.2em;
        background-color: white;
        border-radius: 2em;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        border: 2px solid black;

    }



    .play-button2 {
        position: relative;
        padding: 0.2rem 0.4rem;
        margin-right: 1px;

    }


    .inicioBtn {
        font-weight: bold;
        /* Fuente en negrita o bold */
        position: fixed;
        height: 30px;
        margin: 0 1% auto;
        right: 2px;
        text-align: center;
        line-height: 20px;
        height: 30px;
        line-height: 30px;
        cursor: pointer;
        transition: all 300ms ease 0ms;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }



    .register-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        margin-top: 125px;
        Overflow: overlay;
    }

    .contact {
        float: left;
        width: 80%;
        margin: 1.5em;
        padding: 1em;
        background-color: white;
        border-radius: 0.9em;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        border: 2px solid black;
        z-index: 1;
    }

    .register {
        position: relative;
        ;
        top: 9.5rem;
        width: 80%;
        margin: 1.5em;
        padding: 1em;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
        border: 2px solid black;
        z-index: 1;
    }

    #contact h2,
    #register h2 {
        text-align: center;
        margin-bottom: 0.5em;

    }

    h2 {

        letter-spacing: 2px;
        text-align: center;
        top: 1%;
        font-size: 1.1em;
        animation: move linear 2000ms infinite;
    }

    .description {
        margin-top: 10px;
        font-size: 20px;
        line-height: 1.3;
        text-align: left;

    }

    .description2 {
        margin-top: 10px;
        font-size: 20px;
        line-height: 1.3;
        text-align: left;

    }

    .form-group {
        width: 100%;
        max-width: 250px;
        margin-bottom: 0.5em;
    }

    .formcontainer {
        flex-direction: column;
        justify-content: left;

    }

    .formulario-sesion .opcion-enlace {
        text-align: center;
        margin-top: 5px;
        /* z-index: 4;*/
    }


    .formulario-sesion .opcion-enlace a {
        text-decoration: none;
        color: #ffffff;
        margin: 10px;

    }

    /*  #mostrarFormulario {
        background-color: #336699;
        color: #ffffff;
        border: none;
        /* padding: 10px 20px;*/
    /*font-size:16px;*/
    /* cursor: pointer;
        z-index: 9999;
    }*/

    #formulario-recuperacion {
        background-color: red;
        color: #aafafa;
        border: none;
        /* padding: 10px 20px;*/
        font-size: 24px;
        cursor: pointer;
    }

    #beneficios {
        margin: 2em auto;
        width: 85%;

    }

}

@media (orientation:landscape) {

    .play-button {
        position: relative;
        width: 150px;
        margin-left: auto;
        margin-right: auto;


    }


}