body {
    font-family: courier new;
    top: 50px;
    padding: 0px;
    margin: 0px
}

a:link, a:active, a:hover, a:visited{
    text-decoration: none;
    color: black;
}

header {
    font-family: courier new;
    position: fixed;
    top: 0px;
    margin-top: 10px;
    width: 100%;
    font-size: 2em;
    letter-spacing: 2px;
    z-index: 5;
}

.left {
    display: block;
    background-color: rgba(256,256,256, 0.7);
    border-radius: 15px;
    padding: 20px;
    position: absolute;
    left: 1.5%;
}

.right {
    display: block;
    background-color: rgba(256,256,256, 0.7);
    border-radius: 15px;
    padding: 20px;
    position: absolute;
    right: 1.5%;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 16px;
    padding: 16px;
}

.gallery-item {
    position: relative;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
}

.caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 
    background-color: rgba(0, 0, 0, 0.0);
    color: black;
    padding: 5px;
    border-radius: 8px;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.info {
    display: block;
    position: relative;
    left: 0;
    width: 100%;
    top:250px;
    margin: 0;
    text-align: center;
    padding: ;
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(80%, 1fr));
    }
    
    .left {
    display: block;
    background-color: rgba(256,256,256, 0.7);
    border-radius: 15px;
    padding: 5px;
    position: absolute;
    left: 5%;
}

.right {
    display: block;
    background-color: rgba(256,256,256, 0.7);
    border-radius: 15px;
    padding: 5px;
    position: absolute;
    right: 5%;
}
    .caption {
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-family: 
    background-color: rgba(0, 0, 0, 0.0);
    color: black;
    padding: 5px;
    border-radius: 8px;
}
}
