@font-face {
    font-family: sans;
    src: url(ppneuebit-bold-webfont.woff);
  }

@font-face {
    font-family: sserif;
    src: url(ppmondwest-regular-webfont.woff);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    height: 100%;
    width:100%;
}
body{
    font-family: sserif;
    background-color: rgb(131, 161, 138);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.navbar, .container{
    font-family: sserif;
    background-color: rgb(131, 161, 138);
    width: 100%;
}

.title {
    align-items: left;
    margin-right: 50vw;
    transition-duration: 1s;
}
.navbar{
    margin-bottom: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 1s;
}
.btn, input{
    background-color:rgb(131, 161, 138);
    font-family: sserif;
    margin: 10px;
    height: 35px;
    padding: 0 1em;
    border-color: rgb(131, 161, 138);
    box-shadow: 0px 0px;
    width: 5em;
}

.container{
    --size: 4;
    height: 800px;
    display: grid;
    grid-template-columns: repeat(var(--size), 1fr);
    grid-template-rows: repeat(var(--size), 1fr);
    gap: 1px;
    padding: 1px;
    position: relative;
 
}




.pixel{
    background-color:rgb(131, 161, 138);
    transition-duration: 0.1s;
}