body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('background.webp') no-repeat center center fixed;
    background-size: cover;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.loader {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.circle {
    width: 15px;
    height: 15px;
    margin: 5px;
    background-color: #FFFFFF;
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
}

.circle:nth-child(2) {
    animation-delay: -1.1s;
}
.circle:nth-child(3) {
    animation-delay: -1s;
}
.circle:nth-child(4) {
    animation-delay: -0.9s;
}
.circle:nth-child(5) {
    animation-delay: -0.8s;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
}

.icon {
    font-size: 2em;
    margin-right: 10px;
    vertical-align: middle;
}

.icon-rocket {
    animation: fly 2s infinite ease-in-out;
}

@keyframes fly {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

p {
    font-size: 1.2em;
    margin-top: 20px;
}

.icon-hourglass {
    font-size: 1.2em;
    vertical-align: middle;
}
