body {
    font-family: "OpenAI Sans", sans-serif;
    background-color: #fff;
    color: #000;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; 
    flex-direction: column;
}

/* Constrain the content width and center horizontally */
main {
    max-width: 650px; 
    margin: 0 20px;
    text-align: center;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

#logo {
    height: 100px; /* Adjusted size */
}

#text-area {
    font-size: 16px; /* Reduced font size */
    font-style: normal;
    font-weight: 400;
    line-height: 1.5; /* Improved line spacing */
    margin-bottom: 36px; /* Consistent spacing with other elements */
}

/* Button styles */
#main-button,
#unlink-button {
    display: inline-flex;
    height: 44px; /* Slightly smaller button height */
    padding: 8px 18px; /* Adjust padding */
    align-items: center;
    border: none;
    outline: none;
    gap: 8px;
    font-family: "OpenAI Sans", sans-serif;
    font-size: 16px; /* Reduced font size */
    font-weight: 500;
    line-height: 1.2; 
    cursor: pointer;
    border-radius: 24px;
    background-color: #000;
    color: #fff;
    margin-top: 54px;
    margin-bottom: 36px;
    margin-right: 10px;
    margin-left: 10px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

#main-button:hover,
#unlink-button:hover {
    transform: scale(1.05); /* Add subtle hover effect */
    background-color: #333; /* Slightly lighter on hover */
}

p {
    line-height: 1.4; /* Slightly looser line height */
    margin-bottom: 36px; /* Adjusted spacing for consistency */
    text-align: center;
}

p a {
    color: inherit;
    text-decoration: underline;
    font-size: 14px;
    margin-top: 50px;
}
.narrow-paragraph {
    max-width: 514px; /* Narrower width */
    margin: 0 auto; /* Center-align the narrower paragraph */
    text-align: center; /* Keep it justified for consistency */
    line-height: 1.5; /* Adjust line spacing if needed */
}
