/* full-page background grid */
#background-grid {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(25, 1fr); /* the number of grid columns */
    grid-template-rows: repeat(12, 1fr); /*  the number of grid rows */
    gap: 0.5px; /* space between grid cells */
    pointer-events: none; /* mouse interactions to pass through */
    opacity: 0.5; /* 50% transparency */
    background-color: #000;
    z-index: -1; /* behind other content */
}

#background-grid div {
    background-image: url("/images/josie.jpg");
    background-size: 110vw 110vh;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 100%;
    height: 100%;
}

#background-grid div.active {
    opacity: 1;
}

#about-container {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    overflow-y: auto;
    max-height: 80vh;
}

#about-header {
    text-align: center;
    margin-bottom: 20px;
}

#about-header h1 {
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

#about-content {
    font-family: Georgia, serif;
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    margin-top: 20px;
}

#about-content p {
    margin-bottom: 20px;
}
