@keyframes sea {
    0% {background-position: 0 0;}
    100% {background-position: 100% 0;}
}

@keyframes fish {
    0% {background-position: 100% 0;}
    100% {background-position: 0 0;}
}

body {
    font-family: Arial black, sans-serif;
    background-image: url('sea.png'), url('fish1.png');
    background-repeat: repeat-x;
    animation : sea 5s linear infinite, fish 5s linear infinite;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
}

.header img {
    height: 50px;
}

.section {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
}

.home-text {
    text-align: center;
    color: #2a9d8f;
    font-size: 1.2em;
    margin-top: 20px;
}

.home-text span {
    font-size: 1.5em;
    color: #e76f51;
}
.about-section {
    padding: 20px;
    background-color: transparent;
    color: #333;
    font-size: 1.2em;
    line-height: 1.6;
}

.about-section h2 {
    color: #2a9d8f;
    font-size: 2em;
    margin-bottom: 20px;
}

.about-section p {
    color: #264653;
}