/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    overflow: hidden;
}

.container {
    text-align: center;
    z-index: 2;
    position: relative;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: #333;
}

p {
    font-size: 1.5em;
    color: #666;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.moving-object {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 165, 0, 0.5);
    position: absolute;
    bottom: -50px;
    animation: moveUp 10s infinite;
    border-radius: 50%;
}

.moving-object:nth-child(2) {
    width: 70px;
    height: 70px;
    animation-duration: 12s;
    left: 25%;
    background-color: rgba(255, 69, 0, 0.5);
}

.moving-object:nth-child(3) {
    width: 40px;
    height: 40px;
    animation-duration: 15s;
    left: 50%;
    background-color: rgba(135, 206, 250, 0.5);
}

.moving-object:nth-child(4) {
    width: 60px;
    height: 60px;
    animation-duration: 18s;
    left: 75%;
    background-color: rgba(60, 179, 113, 0.5);
}

.moving-object:nth-child(5) {
    width: 30px;
    height: 30px;
    animation-duration: 20s;
    left: 90%;
    background-color: rgba(255, 20, 147, 0.5);
}

@keyframes moveUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-110vh);
    }
}
