body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    margin: 40px;
    
    position: relative;
    width: 100%;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Adjust to distribute space between elements */
    height: 100px;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 1000;
}

#header-image {
    max-height: 100%;
    cursor: pointer;
}

.header-right {
    margin-left: auto; /* Pushes the text link to the right */
    padding-right: 20px; /* Optional: Adds space between the link and the right edge */
}

.header-link {
    font-size: 18px;
    text-decoration: none;
    color: #333; /* Text color */
    font-weight: bold;
}

.header-link:hover {
    color: #007BFF; /* Change color on hover */
    text-decoration: underline;
}
.header img {
    align-items: center;
}

.image-container {
    
    width: 235px; /* Default width */
    height: auto; /* Default height */
    
    overflow: hidden;
    cursor: pointer;
    position: absolute; /* Use absolute positioning for placement in grid */
    transition: transform 0.3s ease, left 0.5s ease, top 0.5s ease; /* Smooth movement transitions */
}

.image-container img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.image-container:hover {
    transform: scale(1.02); 
}

.image-container:hover img {
    filter: grayscale(0%);
}
