
/*header{
margin-bottom: 8rem;
padding-bottom: 4rem;
}*/
body {
font-family: Georgia, 'Times New Roman';
margin: 0;
padding: 0;
}

h1{
font-size: 500%;
margin: 0%;
padding: 0%;
text-align: center;
}
h2{
text-align: center;
}

/* For the About page narrative*/
.narrative{
margin-top: 10%;
padding-top: 5%;

}

/* End of the About page narrative*/

/*For the photo and video gallery*/
.gallery {
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: center;
}
.thumbnail img, .thumbnail video {
max-width: 150px;
cursor: pointer;
}
.media-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
align-items: center;
justify-content: center;
z-index: 1000;
}

.full-media {
max-width: 90%;
max-height: 90%;
display: none;
}

.close-btn {
position: absolute;
top: 20px;
right: 20px;
font-size: 32px;
color: white;
cursor: pointer;
}

.NavMenu {
color: white;
font-style: bold;
margin: 0rem; 
padding: 0rem;
}

.nav-btn {
position: absolute;
top: 50%;
font-size: 36px;
color: white;
cursor: pointer;
z-index: 1001;
background-color: rgba(0, 0, 0, 0.4);
padding: 10px 15px;
border-radius: 5px;
transform: translateY(-50%);
}

.nav-btn.left {
left: 10px;
}

.nav-btn.right {
right: 10px;
}


footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgb(0, 0, 0);
text-align: center;
color: rgb(250,250,250);
font-weight: 900;
padding: .5rem;
}