body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bubble,
.drop,
.pattern {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: move 12s linear infinite;
}

.pattern {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.content {
    position: relative;
    text-align: center;
    background-color: rgba(100, 149, 237, 0.9);
    border-radius: 10px;
    padding: 20px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #FF8C00;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #FFA500;
}

.info {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(24, 144, 255, 0.9);
    color: #FFD700;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.info p {
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .info {
        font-size: 0.8rem;
        padding: 10px;
    }
}

@keyframes move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(200px, -200px);
    }
}

