@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #4ea832;
    font-family: "Comic Neue", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column; /* Ensures everything stacks vertically */
}
.slightmargin {
    margin:35px;
    font-size:50px;
}
.slightmarginsmall {
    margin:35px;
}
.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    width: 300px;
}

.button-container {
    margin-top: 20px; /* Add spacing between the grid and button */
    display: flex;
    justify-content: center;
    width: 100%; /* Ensure the button container takes the full width */
}

#resetbutton {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border: 2px solid black;
    font-size: 50px;
    cursor: pointer;
    background-color: #9532a8;
}
