* {
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(105, 105, 105, 100);
    font-family: sans-serif;
    gap: 2rem;
}

canvas {
    background: #eee;
    display: block;
    margin: 0 auto;
    margin-top: 0.5rem;
}

button {
    display: block;
}

button {
    padding: 0.1rem;
    width: 5rem;
    border: 0;
    border-radius: 0.8rem;
}

button:hover {
    scale: 105%;
    filter: brightness(90%);
}



#start-menu {
    gap: 1rem;
    display: block;
    flex-direction: column;
    background: rgba(145, 145, 145, 100);
    padding: 3rem;
    border-radius: 0.8rem;
    align-items: center;
}

#start-menu h1, #start-menu label {
    color: rgba(255, 255, 255, 100);
}

#start-menu h1 {
    margin: 0;
}



#gameContainer {
    display: none;
    flex-direction: column;
    background: rgba(145, 145, 145, 100);
    width: auto;
    padding: 3rem;
    height: fit-content;
}

#gameBoard {
    /* gap: 0.5rem; */
    display: block;
    flex-direction: column;
    /* padding: 1rem; */
    border-radius: 8px;
    align-items: center;
    height: fit-content;
    width: fit-content;
    position: relative;
}

#gameButtons {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 2rem;
    min-width: max-content;
    width: var(--gameBoard-width);
    height: 5rem;
    gap: 2.5rem;
}

.font-60 {
    font-size: 0.6rem;
}

.background-dark {
    background-color: #262626;
}

.center {
    display: flex;
    justify-content: center;
    text-align: center;
}

.flex-column {
    flex-direction: column;
}

.text-center {
    text-align: center;
}

.margin-top {
    margin-top: 10rem;
}

.font {
    font-family: 'Roboto', sans-serif;
}

.width-15 {
    width: 15vw;
}

.width-30 {
    width: 30vw;
}

/**
@media screen and (width:750px) {
    canvas, button, #start-menu, #gameContainer, 
    #gameBoard, #gameButtons, .font-60, 
    .margin-top, .width-15, .width-30 {
        scale: 40%;
    }
}
*/