body {
    font-family: 'Lora', serif;
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 20px;
    text-align: center; 
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.hover-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    color: black;
}

.hover-title .word {
    display: inline-block;
    transition: color 0.3s ease;
}

.hover-title .word:nth-child(1):hover {
    color: #ff5733; 
}

.hover-title .word:nth-child(2):hover {
    color: #33ff57; 
}

.hover-title .word:nth-child(3):hover {
    color: #3357ff; 
}

.hover-title .word:nth-child(4):hover {
    color: #ff33a8; 
}

.hover-title .word:nth-child(5):hover {
    color: #ffd633; 
}

.hover-title .word:nth-child(6):hover {
    color: #33fff2; 
}

.subheader {
    font-size: 1.2em;
    max-width: 800px;
    margin: 20px auto;
    color: #555;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    text-align: center; 
    transition: all 0.3s;
}

.subheader:hover {
    transform: scale(1.05);
    color: darkblue;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.entry {
    text-align: center;
    transition: transform 0.3s;
}

.entry img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    transition: filter 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.entry:hover img {
    filter: brightness(0.8);
    transform: scale(1.05);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 10px;
    color: #333;
    text-transform: uppercase;
}