/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Centering content */
body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #2d2d2d;
}

/* Styling the container */
.container {
    text-align: center;
    color: white;
}

/* Title styling */
.title {
    font-size: 3rem;
    font-weight: bold;
    animation: fadeIn 2s ease-in-out;
}

/* Sub title styling */
.sub-title {
    font-size: 1.5rem;
    margin-top: 20px;
    animation: fadeIn 3s ease-in-out;
}

/* Animasi untuk efek loading */
.animation {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.circle {
    width: 15px;
    height: 15px;
    margin: 0 10px;
    border-radius: 50%;
    background-color: #ffb900;
    animation: bounce 1.5s infinite ease-in-out;
}

.circle:nth-child(1) {
    animation-delay: 0s;
}

.circle:nth-child(2) {
    animation-delay: 0.2s;
}

.circle:nth-child(3) {
    animation-delay: 0.4s;
}

/* Footer styling */
.footer {
    margin-top: 30px;
    font-size: 1rem;
    opacity: 0.7;
    animation: fadeIn 4s ease-in-out;
}

/* Animasi fade in */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animasi bounce untuk titik loading */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
