body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
}

h1 {
    margin: 0;
    font-weight: 500;
    letter-spacing: 1.5px;
}

nav a {
    color: black;
    text-decoration: none;
    margin-left: 20px;
    cursor: pointer;
    font-weight: 500;
}

/* Styles for the gallery grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.gallery img {
    width: 100%;
    cursor: pointer;
	
}

.gallery img:hover {
	
}

/* Styles for the overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
}

.overlay img {
    max-width: 70%;
    max-height: 70%;
}

.nav-button {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ... previous styles ... */

.about-pane {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px; /* Assuming an average word length of 1em (which is typically the size of the "M" character in most fonts) */
   min-height: 500px; padding: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    overflow-y: auto;
}

.about-pane p {
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6;
}

#insta{
	text-decoration: none;
	color: black;
	text-align: center;
	margin: auto;
	display: block;
}

.about-pane a:hover, #insta:hover {
	color:gray;
}

.about-pane footer {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1.2px;
}

.about-pane footer a {
    text-decoration: none;
    color: black;
}

footer {
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    letter-spacing: 1.2px;
}

footer a {
    text-decoration: none;
    color: black;
}
