/* Additional styles for domain parking page */
:root {
    --primary-color: #007bff;
    --text-color: #343a40;
    --background-color: #f8f9fa;
    --secondary-text: #6c757d;
}

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

.container {
    max-width: 600px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-text);
    line-height: 1.6;
}

.logo {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
