/*
Theme Name: Under Construction
Theme URI: https://example.com/
Author: You
Description: Under Construction page with logo and illustration.
Version: 1.1
*/

body {
    margin: 0;
    background: #fafafa;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.wrapper {
    max-width: 500px;
    padding: 40px;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.illustration {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 30px auto;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 18px;
    color: #666;
}

.spinner {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    border: 5px solid #ddd;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
