@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #141A28;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent scrollbars if content fits */
}

.container {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Reduced gap */
    animation: fadeIn 1s ease-out;
}

.logo {
    max-width: 300px;
    width: 80%;
    height: auto;
    object-fit: contain;
}

.message {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #c8c7c7;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Mobile specific adjustments */
@media (max-width: 480px) {
    .logo {
        max-width: 220px;
    }
    
    .message {
        font-size: 1.4rem;
        padding: 0 10px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
