/* Reset default browser margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page body styling with a pure white background and centered content */
body {
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    color: #111;
}

/* Main container wrapper */
.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    padding: 20px;
}

/* Wrapper for spacing around the logo */
.logo-wrapper {
    position: relative;
    margin-bottom: 25px;
}

/* Exact sizing constraints for your 300x300 logo */
.logo-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    display: block;
}

/* Multi-part minimalist tagline formatting */
.tagline {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    color: #555;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.separator {
    color: #888;
    font-size: 0.8rem;
}