body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    margin: 20px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
}

header h1 .domain-name {
    font-size: 1.2em; /* Slightly larger than the surrounding text */
    font-weight: bold;
    color: #dc3545; /* A more striking color */
}

header h1 .domain-name a {
    color: inherit; /* Ensure the link color is inherited from the span */
}

header h1 a {
    color: #007bff;
    text-decoration: none;
}

header h1 a:hover {
    text-decoration: underline;
}

main p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #0056b3;
}

footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #6c757d;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    main p {
        font-size: 1em;
    }
    .contact-button {
        font-size: 1.1em;
        padding: 10px 20px;
    }
}
