/* General Page Styles */
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #0f172a;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Logo Animation */
.logo {
    width: 150px; /* Adjust as needed */
    height: auto;
    animation: spin 10s linear infinite;
}

/* Spin Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Subtitle Text */
p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Animated Text */
.animated-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 20px;
    animation: fadeInOut 2s infinite alternate;
}

/* Animation Keyframes for Text */
@keyframes fadeInOut {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Footer Styling */
.footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.6;
}
