@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap');

body{
    margin: 0;
    padding: 0;
    font-family: "Pixelify Sans", sans-serif;
    background: rgba(118, 132, 172, 0.911);
}

h2, h3 {
    margin-top: -5px;
    text-align: center;
    font-size: 25pt;
    color: rgb(63, 84, 119);
}

#tela-escura{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 35%;
    height: 25%;
    opacity: 0.8;
    position: absolute;
    background-color: white;
    color: white;
    display: none;
    padding-top: 300px;
    z-index: 10;
    border-radius: 10px;
    border: 1px solid black;
    box-shadow: 0px 0px 15px 0px black;
}

.container{
    margin: 0 auto;
    max-width: 250px;
    max-height: 350px;
    padding: 70px;
    border-radius: 10px;
    background-color: rgb(177, 189, 209);
    border: 3px solid rgb(49, 57, 80);
    box-shadow: 0px 0px 15px 0px rgb(49, 57, 80);
}

.grid{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

.celula{
    width: 75px;
    height: 65px;
    font-size: 30pt;
    margin: 4px 2px;
    font-weight: 300;
    padding-top: 10px;
    border-radius: 3px;
    text-align: center;
    background-color: rgb(240, 243, 252);
}
