body {
    background-color: #f0f4f7; /* A very soft, light blue-gray */
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.content {
    font-size: 15rem; /* Large enough to be the center of attention */
    color: #6a8c9b; /* A muted, soft blue for the text */
}

/* Optional: Add a simple animation for a little extra charm */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.content span {
    animation: fadeIn 2s ease-in-out;
}