@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: #262626;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#container{
    background-color: #DBDBDB;
    margin: 20px;
    width: 90vw;
    height: 85vh;
    border-radius: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2{
    background-color: #33CC33;
    color: #DBDBDB;
    height: 20%;
    width: 100%;
    border-radius: 70px 70px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: bold;
    -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);
}

#rest{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80%;
}

#puntajes{
    display: flex;
    flex-direction: row;
    text-align: center;
}

#puntajes div {
    margin: 15px;
    height: 170px;
}

#puntajes div p, #modo p, #reglas h3{
    font-size: 25px;
    font-weight: bold;
}

#azul, #rosa, #modo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#puntajes div h3, #modo h3{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DBDBDB;
    font-size: 40px;
    font-weight: bold;
    height: 80px;
    width: 110px;
    border-radius: 40px;
    -webkit-box-shadow: 0px 5px 8px 1px rgba(0,0,0,0.29);
    -moz-box-shadow: 0px 5px 8px 1px rgba(0,0,0,0.29);
    box-shadow: 0px 5px 8px 1px rgba(0,0,0,0.29);
}

#azul h3{
    background-color: #0033CC;
}

#azul p{
    color: #0033CC;
}

#rosa h3{
    background-color: #FF3399;
}

#rosa p{
    color: #FF3399;
}

#modo{
    height: 130px;
}

#modo h3{
    background-color: #00B0F0;
}

#reglas{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5px;
    width: 100%;
}

#reglas p{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 15px;
    font-weight: normal;
    width: 100%;
}

#inicio{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #DBDBDB;
    width: 80%;
    height: 50px;
    border-radius: 80px;
    font-weight: bold;
    border: none;
    -webkit-box-shadow: 0px 5px 8px 1px rgba(0,0,0,0.29);
    -moz-box-shadow: 0px 5px 8px 1px rgba(0,0,0,0.29);
    box-shadow: 0px 5px 8px 1px rgba(0,0,0,0.29);
    position: relative;
    top: 50px;
}

.azul{
    background-color: #0033CC;
}

.rosa{
    background-color: #FF3399;
}


#inicio:active{
-webkit-box-shadow: inset 0px -6px 8px 1px rgba(0,0,0,0.29);
-moz-box-shadow: inset 0px -6px 8px 1px rgba(0,0,0,0.29);
box-shadow: inset 0px -6px 8px 1px rgba(0,0,0,0.29);
}

#reglaslink{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#33CC33;
    color: #DBDBDB;
    font-weight: bold;
    height: 50px;
    width: 70%;
    border-radius: 80px;
    font-size: 20px;
    margin: 5px;
}

