body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    background-color: #f0f2f5;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #333;
    font-size:50px;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Adjust based on your preference */
    gap: 10px;
    max-width: 600px;
    margin: 20px auto;
}

.game-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* Adjust size as needed */
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.game-item:hover {
    background-color: #c7d0eb;
    transform: scale(1.05);
}

.selected {
    background-color: #b8d3ff; /* Pastel blue */
    color: #333;
}

.banner {
    display: block; /* Change to inline-block if you prefer */
    width: auto;
    padding: 10px;
    margin-top: 20px;
    border-radius: 8px;
    color: #333;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
}

.banner.nyc {
    background-color: #fcccff; /* pink*/
}

.banner.transport {
    background-color: #bdfff9; /* blue */
}

.banner.animals {
    background-color: #d1ffc9; /* green */
}

.banner.colors {
    background-color: #FDFFB6; /* yellow */
}

#submitGuess {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 60px; 
}

#submitGuess:hover {
    background-color: #0056b3;
}

.answered {
    opacity: 0.5;
    pointer-events: none; /* Prevent further interaction */
    background-color: #b8d3ff; /* Optional: change the color to indicate correctness */
}
.try-indicator {
    height: 50px; /* Small size for the try indicators */
    margin: 0 5px; /* Spacing between indicators */
}
.hacker-karel{
    height: 200px; /* Small size for the try indicators */
    margin: 0 5px; /* Spacing between indicators */
}

.copyright-banner {
    text-align: center;
    padding: 10px 0;
    margin-top: 40px; /* Adjust based on your layout to ensure it doesn't overlap content */
    background-color: #c7d0eb; /* Slightly different shade for distinction, adjust as needed */
    color: #333;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
}