body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f0f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.header {
    background: linear-gradient(to bottom, #eaeff2, #ffffff);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
}

.logo {
    width: 400px;
    margin-bottom: 20px;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.3); /* Adds a shadow similar to macOS windows */
    border-radius: 12px; /* Softly rounds the edges of the logo */
}

h1 {
    font-size: 24px;
    color: #333;
}

p {
    font-size: 18px;
    color: #666;
    margin: 10px 0 20px;
}

.cta-button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background-color: #007aff;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #005bb5; /* Changes the button color on hover */
}

pre {
    background-color: #282c34; /* Dark background for the code block */
    color: #abb2bf; /* Soft gray font color for readability */
    font-family: 'Courier New', Courier, monospace; /* Monospace font for code */
    padding: 20px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Adds slight shadow for depth */
    white-space: pre; /* Prevents wrapping of lines */
    overflow-x: auto; /* Allows horizontal scrolling for long lines */
    text-align: left; /* Align text to the left */
    margin: 20px 0;
    border: 1px solid #444b56; /* Subtle border for contrast */
}

pre code {
    display: block;
    color: #61dafb; /* Highlighted color for keywords */
    font-size: 14px; /* Slightly smaller font for code */
    line-height: 1.5; /* Comfortable line spacing */
}
