/* styles.css */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Main container */
.container {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Logo styling */
.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 600px;
    display: block;
    margin: 0 auto;
}

/* Coming soon text */
.coming-soon-text {
    color: #8B0000;
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .logo {
        width: 90%;
        max-width: 400px;
    }
    
    .coming-soon-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 95%;
        max-width: 300px;
    }
    
    .coming-soon-text {
        font-size: 2rem;
    }
    
    .container {
        padding: 10px;
    }
}