body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #d3d3d3;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

.top-row {
    background-color: #000;
    text-align: center;
    padding: 20px 0;
}

.top-row h1 {
    color: #fff;
    font-size: 2rem;
    margin: 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
}

.grid-item {
    position: relative;
    overflow: hidden;
}

.grid-item a {
    display: block;
    position: relative;
    text-decoration: none;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.grid-text {
    position: absolute;
    bottom: 50%;
    left: 7%;
    transform: translateY(50%);
    color: white;
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.5rem;
    pointer-events: none; /* Ensures the text doesn't interfere with the link */
}
