/* style.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.getstarted {
    text-align: center;
    margin: auto; /* Center the grid horizontally */
    padding: 10px;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 0px; /* Adjust spacing between images */
    max-width: 600px; /* Set a maximum width for the grid */
    margin: 0 auto; /* Center the grid horizontally */
}

.image-grid img {
    width: 100%; /* Make images fill the grid cells */
    height: 100%; /* Maintain aspect ratio */
}

.scores {
    text-align: center;
    margin: auto; /* Center the grid horizontally */
}
