html, body {
    margin: 0;
    padding: 0;
    background-color: #676767;
}

ul {
    background-image: url('images/623_navbg.jpg');
    list-style-type: none;
    padding-left: 0;
}

li {
    border: black 1px solid;
    padding: 10px 34px;
}

a#link {
    background-image: url('images/623_bullet.jpg');
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 25px;
    text-decoration: none;
    color: black;
}

a {
    text-decoration: none;
}

p {
    padding: 50px;
    line-height: 0.8;
}

.page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-image: url('images/623_bg.gif');
    background-repeat: repeat-y;
    background-position: center;
    background-size: 900px 15px;
    padding: 0;
    margin-bottom: 50px;
}

.header {
    position:absolute;
    top:-10px;
    left:50px;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-family:"Times New Roman", Times, serif;
    font-size:18px;
}

.sidebar {
    padding: 0;
    margin: 0;
}

.content {
    transform: translateY(-5px);
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.coupon {
    border-style: dashed;
    width:550px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.footer {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-family:Arial, sans-serif;
}

#squished {
    height: 200px;
    width: 200px;
    padding: 25px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 685px;
    max-height: 600px;
    overflow: auto;
}

.image-container {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover .image {
    transform: scale(1.1);
}

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

.lightbox-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}