@font-face {
    font-family: 'retro';
    src: url('./fonts/retro-webfont.woff2') format('woff2'),
         url('./fonts/retro-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    max-height: 100%;
    overflow-y: hidden;
    background-color: rebeccapurple;
}

#canvas{
    border:darkgray 10px solid;
    max-width: 1280px;
    width: 100%;
    height: 100%;
}

.arcade-machine{
    display: flex;
    justify-content: center;
    margin:1em;
}

@media (min-width:1068px) {
    .controls{display: none;}
}

@media (max-width:1068px) {
    .arcade-machine{
        margin: 0;
    }
    #canvas{
        width: 100vw;
    }
    .row {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
      }
      
      .column {
        display: flex;
        flex-direction: column;
        flex-basis: 100%;
        flex: 1;
        justify-content: center;
        align-items: center;
      }
      .button{
          width: 3em;
      }

}
@media (max-width:500px) {
    .button{
        width: 7em;
    }
}
