@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";
}

body{
    background-color: #262626;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#container{
    background-color: #DBDBDB;
    margin: 20px;
    width: 90vw;
    height: 90vh;
    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: 45px;
    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);
}

form{
    height: 80%;
    text-align: center;
    padding: 20px 0px;
}

p{
    font-size: 20px;    
    font-weight: bold;
    margin-top: 30px;  
}

#players{
    width: 50%;
    height: 50px;
    background-color: #FF3399;
    color: #DBDBDB;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    border: none;
    font-size: 30px;
    margin-bottom: 30px;
    -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);
}

ul{
    list-style: none; 
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center; 
    padding: 10px;
    margin-bottom: 20px;
}

li{
   margin: 2px;
    
}

input[type="checkbox"]{
    display: none;
}

label{
    background-color: #FFB9DC;
    color: black;
    height: 50px;
    padding: 0 15px 0 15px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

input:checked + label{
    background-color: #FF3399;
    color: #DBDBDB;
    font-weight: bold;
}

#inicio{
        background-color: #00B0F0;
        font-size: 30px;
        text-align: center;
        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;
}

#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);
}