@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mulish';
}
body{
	background: #ffffff00 !important;
    /*background: url(img/fondo.jpg);*/
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: #fff;
    height: 95vh;
    background-color: white;
}
section{
   max-width: 90%;
   width: 100%;
   padding: 50px;
   margin: auto;
   text-align: center;
}

.nuevo-juego {
            cursor: pointer;
            background: linear-gradient(#86754e, #9d916f);
			color:#d3cdc2;
            padding: 20px;
            border-radius: 50px;
            border: white 5px solid;
            font-size: 130%;
        }
		.nuevo-juego:hover {
            background: linear-gradient(#9d916f,#86754e);
        }
#pantalla-inicio{
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#pantalla-juego{
    display: none;
}
#pantalla-final{
    display: flex;
}

/* PANTALLA INICIO */
#pantalla-inicio h2{
    font-size: 60px;
    text-shadow: 2px 2px 2px #52649f;
    color:#1e4388;
}
#pantalla-inicio h2 span{
    color: #d3ab73;
}
/*#pantalla-inicio button{
    font-size: 30px;
    display: inline-block;
    border: none;
    padding: 10px 30px;
    margin-top: 30px;
    cursor: pointer;
    background:#1cff03;
    color:#000;
}
#pantalla-inicio button:hover{
    background-color:#ffff0d;
}*/

/* PANTALLA JUEGO */
#pantalla-juego h2{
    font-size: 40px;
    text-shadow: 2px 2px 5px #52649f;
    width: 400px;
    margin: auto;
    margin-bottom: 10px;
    color: #1e4388;
}
#pantalla-juego h2 span{
    color: #d3ab73;
}
#pantalla-juego .contenedor-pais{
    margin-top: 40px;
}

#pantalla-juego .contenedor-pais .letra{
    display: inline-block;
    max-width: 100px;
    max-height: 100px;
    border-radius: 10px;
    width: 100%;
    color: #000;
    background-color: #b9b9d4;
    font-size: 50px;
    margin: 2px;
    text-align: center;
    font-family: 'Mulish';
    font-weight: 800;
    line-height: 80px;
}
#pantalla-juego input{
    display: inline-block;
    font-size: 50px;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 2px solid #004d43;
    margin-top: 40px;
    text-align: center;
    color: #004d43;
    letter-spacing: 4PX;
}
#myProgress {
    width: 300px;
    margin: auto;
    background: #d3ab73;
    border: 2px solid #fff;
    border-radius: 5px;
    margin-top: 50px;
}
  
#myBar {
    width: 1%;
    height: 30px;
    background-color:#176aff;
}

#pantalla-juego .acertadas{
    margin-top: 30px;
    color: #436a5e;
    font-size: 50px;
    font-weight: bold;
}

/* PANTALLA FINAL */
#pantalla-final{
    font-size: 30px;
    display: none;
    flex-direction: column;
    color: #1e4388;
}
#pantalla-final h2{
    margin-bottom: 30px;
    text-decoration: underline;
}

#pantalla-final h3 span{
    display: block;
    font-size: 70px;
    color: #436a5e;
}
#pantalla-final button{
    width: fit-content;
    margin: auto;
    font-size: 30px;
    display: inline-block;
    border: none;
    padding: 10px 30px;
    margin-top: 30px;
    cursor: pointer;
    background:#1cff03;
    color:#000;
}
#pantalla-final button:hover{
    cursor: pointer;
    background:#ffff0d;

}
@media screen and (max-width:1000px) {
    section{
        width: 100%;
    }
    #pantalla-juego .contenedor-pais .letra{
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }
    #pantalla-juego input{
        display: block;
        width: 80%;
        margin: 40px auto;
        font-size: 30px;
    }
}