body {
    background-image: url('beach-background.jpg');
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Pacifico', cursive;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

h1 {
    font-size: 4em;
    margin-top: 50px;
    text-shadow: 2px 2px #000000;
}

.gallery {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.gallery img {
    width: 40%;
    margin: 0 20px;
    border: 5px solid #ffffff;
    box-shadow: 0 0 10px #000000;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.seagull-section {
    margin-bottom: 50px;
}

.seagull-section img {
    width: 30%;
    border: 5px solid #ffffff;
    box-shadow: 0 0 10px #000000;
    cursor: pointer;
    transition: transform 0.3s;
}

.seagull-section img:hover {
    transform: rotate(-10deg) scale(1.05);
}

.seagull-section p {
    font-size: 2em;
    text-shadow: 2px 2px #000000;
    margin-top: 20px;
}