body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

#game {
    margin-bottom: 40px;
    /* Increased margin to provide space for the buttons */
}

#initialRowContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* Space between buttons */
    justify-content: center;
    width: 100%;
    /* Ensure it takes full width of the parent */
}

button {
    height: 5em;
    width: 10em;
    display: inline-block;
}


#startGame {
    height: 5em;
    width: 5em;
    padding: 10px 20px;
    margin: 10px;
    background-color: limegreen;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}


.initial-position {
    position: relative;
    margin: 5px;
    /* Add some margin to space out the buttons */
}


#goodMemory {
    color: green;
}

#badMessage {
    color: red;
}