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

body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    line-height: 1.5;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.content {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    /* This ensures the 'group' is only as wide as its content */
    width: fit-content; 
    margin: 0 auto;
}

.profile-image {
    /* Set a specific height that matches the two lines of text roughly */
    /* 24px (h1) + 16px (p) + margins/line-height */
    height: 48px; 
    width: 48px;

    border-radius: 4px; /* Slight rounding for a premium feel */
    object-fit: cover;
    flex-shrink: 0; /* Prevents image from squishing */
}

.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

p {
    font-size: 16px;
    font-weight: 400;
}

