body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between header elements */
    background-color: #ffffff; /* Assuming logo color is white */
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: #ffcc00; /* Vibrant yellow hover effect */
}

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

.gallery img {
    margin: 10px;
    width: 200px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#details {
    padding: 20px;
    text-align: left;
    background-color: #fafafa;
    margin: 20px;
    border-radius: 5px;
}

footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 10px 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 50%;
    max-width: 500px;
}

.caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #bbb;
    padding: 10px 0;
    height: 150px;
}

.modal-content, .caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from { transform: scale(0) }
    to { transform: scale(1) }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.logo {
    margin-right: 5px;
    width: 250px;
}
