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

body {
    background-color: #87CEEB; /* Sky blue */
    overflow: hidden;
}

.scene {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Water */
.water {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30%;
}

/* Boat */
.boat {
    position: absolute;
    bottom: 20%;
    width: 150px;
    animation: floatBoat 4s ease-in-out infinite;
}

/* Clouds */
.cloud {
    position: absolute;
    width: 150px;
    opacity: 0.8;
}

.cloud1 {
    top: 10%;
    left: -150px;
    animation: moveClouds 15s linear infinite;
}

.cloud2 {
    top: 20%;
    left: -250px;
    animation: moveClouds 20s linear infinite;
}

/* Boat floating effect */
@keyframes floatBoat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Cloud moving effect */
@keyframes moveClouds {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(100vw);
    }
}

