* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Goldman", sans-serif;
    background: linear-gradient(to right, #2F2F2F, aliceblue);
}

.nav-link.about {
    text-decoration: none;
    color: #2F2F2F;
    font-weight: bold;
    font-family: "Goldman", sans-serif;
    font-size: 20px;
}

h1 {
    text-align: center;
    font-family: "Goldman", sans-serif;
    margin-bottom: 20px;
    font-size: 60px;
    font-weight: 700;
    text-shadow: 0 0 10px rgb(88, 124, 239), 0 0 20px aliceblue, 0 0 30px aliceblue, 0 0 40px aliceblue;
}

.galleryContainer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.filters {
    text-align: center;
    margin-bottom: 20px;
}

.filterButton {
    background-color: #2F2F2F;
    color: aliceblue;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.filterButton:hover {
    background-color: #b1d5f1;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.image {
    display: none;
    width: 300px;
    height: 450px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.image p {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: aliceblue;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image:hover p {
    opacity: 1;
}

.image:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transform: scale(1.03);
}

.image.show {
    display: block;
}

.footer {
    background-color: #2F2F2F;
    color: aliceblue;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Asul', serif;
    margin-top: 20px;
}

.footerLogo {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footerContent a {
    color: cadetblue;
    text-decoration: none;
}

.footerContent a:hover {
    text-decoration: underline;
}