body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
}

.container {
    text-align: center;
    padding: 2rem;
}

h1 {
    color: #1f2937;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: #4b5563;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.gear-icon {
    font-size: 4rem;
    color: #3b82f6;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}