header h1 {
    text-align: center;
    margin-right: 75px;
}

header img {
    margin-right: auto;
}
.image-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates 4 columns */
    gap: 0px; /* Space between images */
    max-width: 600px; /* Maximum width of the grid */
    margin: 0 auto; /* Center the grid horizontally */
}

.image-container img {
    width: 100%;
    height: 100%;
}

.text-container {
    padding-bottom: 20px;
}

.game-text {
    font-size: 25px;
}

#restart-btn {
    margin-bottom: 100px;
    width: 300px;
    height: 50px;
    background-color: red;
    font-size: 20px;
}

#easy, #hard, #restart-btn:hover {
    cursor: pointer;
}