@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;
    font-family: "Noto Sans", sans-serif;
}

body{
    background-color: #262626;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

#container{
    background-color: #DBDBDB;
    margin: 20px;
    width: 90vw;
    height: 90vh;
    border-radius: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
}

#contenido{
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 40px;
    overflow: scroll;
}

h1{
    background-color: #33CC33;
    color: #DBDBDB;
    height: 80px;
    width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    font-weight: bold;
    top: 0;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.21);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.21);
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.21);
    border-radius: 50px 50px 0 0;
}

h2{
    margin: 30px;
    width: 90%;
    text-align: center;
    font-size: 30px;
    background-color: #00B0F0;
    border-radius: 25px;
    padding: 15px 0 15px 0;
    color: #DBDBDB;
}

p{
    text-align: center;
    padding: 0 20px 0 20px;
    font-size: 20px;
    font-weight: normal;

}

.negrita{
    font-size: 20px;
    font-weight: bold;
}

.azul{
    color: #0033CC ;
    font-size: 20px;
    font-weight: bold;
}
.rosa{
    color: #FF3399;
    font-size: 20px;
    font-weight: bold;
}

.verde{
    color: #33CC33;
    font-size: 20px;
    font-weight: bold;
}

.rojo{
    color: #FF0066;
    font-size: 20px;
    font-weight: bold;
}

.celeste{
    color: #00B0F0;
    font-size: 20px;
    font-weight: bold;
}

.prohibido{
    color: #C00000;
    font-size: 22px;
    font-weight: bold;
}

#categorias{
    width: 100%;
    margin: 15px 0 15px 0;
}

.inicio{
    width: 80%;
    margin: 15px 0 15px 0;
}

.boton{
    width: 20%;
    margin: 10px 0 10px 0;
}

.carta{
    width: 50%;
    margin: 15px 0 15px 0;
}

ul{
    margin-top: 15px;
    list-style: none;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

li{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;

}

li a{
    text-decoration: none; 
    font-size: 20px;
    height: 30px;
    width: 100%;
    margin: 10px;
    background-color: #33CC33;
    color: #DBDBDB;
    font-weight: bold;
    border-radius: 25px;
}