body {
    /* This is a placeholder color. Please provide the hex code from your logo. */
    background-color: #fafafa;
    color: #333;
    font-family: 'Arial', sans-serif;
    
    /* Flexbox properties for centering */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 600px;
}

.logo {
    max-width: 512px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 1em;
    margin: 0 0 10px 0;
    font-weight: 300;
    letter-spacing: 2px;
}

p {
    font-size: 1.2em;
    color: #bdc3c7; /* A lighter text color for the subheading */
    margin: 0;
}