@font-face {
    font-family: "Noto Sans";
    src: url(fuente/static/NotoSans-ExtraBold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: "Noto Sans";
    src: url(fuente/static/NotoSans-Regular.ttf);
    font-weight: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    font-family: "Noto Sans", sans-serif;
}

#body{
    background-color: #00B0F0;
    z-index: 100;
}

#iniciado{
    background-color: #262626;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#puntaje{
    background-color: #DBDBDB;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    align-items: center;
    width: 90vw;
    height: 7vh;
    border-radius: 30px;
    margin-top: 20px;
}

#tiempo{
    background-color: #DBDBDB;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10vh;
    height: 100%;
    -webkit-box-shadow: 0px 0px 47px 18px rgba(0,0,0,0.54);
    -moz-box-shadow: 0px 0px 47px 18px rgba(0,0,0,0.54);
    box-shadow: 0px 0px 47px 18px rgba(0,0,0,0.54);
    border-radius: 50%;
}

#azul{
    color: #0033CC;
    margin-left: 30px;
}

#rosa{
    color: #FF3399;
    margin-right: 30px;
}

#cuerpo{
    background-color: #DBDBDB;
    margin: 20px;
    display: block;
    width: 90vw;
    height: 65vh;
    border-radius: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#nombre{
    background-color: #0033CC;
    color: #DBDBDB;
    text-align: center;
    padding: 5px;
    display: block;
    height: 30%;
    width: 100%;
    border-radius: 70px 70px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px -7px 28px 8px rgba(0,0,0,0.64);
    -moz-box-shadow: 0px -7px 28px 8px rgba(0,0,0,0.64);
    box-shadow: 0px -7px 28px 8px rgba(0,0,0,0.64);
    font-size: 40px;
    font-weight: bold;
}


#pista{
    display: flex;
    height: 70%;
    padding: 10px;
    text-align: center;
    margin-top: 15px;
    color: black;
    font-size: 25px;
    font-weight: normal;
}

li{
    background-color: #262626;
    color: #DBDBDB;
    height: 50px;
    margin-top: 25px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#botones{
    background-color: #DBDBDB;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 90vw;
    height: 10vh;
    border-radius: 80px;
}

#botones div{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#incorrecto{
    background-color: #FF0066;
    font-size: 60px;
    text-align: center;
    color: #DBDBDB;
    width: 30%;
    height: 90%;
    border-radius: 80px;
}

#correcto{
    background-color: #33CC33;
    font-size: 60px;
    text-align: center;
    color: #DBDBDB;
    width: 30%;
    height: 90%;
    border-radius: 80px;
}

.pasar{
    background-color: #00B0F0;
    font-size: 50px;
    text-align: center;
    color: #DBDBDB;
    width: 20%;
    height: 70%;
    border-radius: 80px;
}

.ocultar{
    display: none;
}

#botones div{
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0px 3px 18px -5px rgba(0,0,0,0.52);
    -moz-box-shadow: 0px 3px 18px -5px rgba(0,0,0,0.52);
    box-shadow: 0px 3px 18px -5px rgba(0,0,0,0.52);
}

#botones div:active{
    -webkit-box-shadow: inset 0px -13px 12px 3px rgba(0,0,0,0.25);
    -moz-box-shadow: inset 0px -13px 12px 3px rgba(0,0,0,0.25);
    box-shadow: inset 0px -13px 12px 3px rgba(0,0,0,0.25);
}