body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    
    background-color: rgb(32, 32, 32);
    background-image: url('../images/background.jpg');
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
}

.grid-container {
    background-color: rgb(0, 0, 0);
    padding: 10px;
    margin: 5px auto ;

    border-radius: 20px;
    cursor: pointer;
}

.shadow {
    border-bottom: 10px solid rgb(0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
}

.block {

    background-color: rgb(226, 226, 226);
    border: 1px solid;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 30px;
}

.buttons {
    border: 1px solid;
}

.game-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 50px;
    margin: auto;
}

.game-control {
    border-radius: 20px;
    cursor: pointer;

    border: 1px solid black;
    color: black;
    background-color: white;
    
    display: flex;
    justify-content: center;
    align-items: center;

    width: 150px;
    height: 45px;

    margin: 10px;
}

.header {
    display: flex;
    justify-content: center;
}