/* General body styling */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    text-align: center;
}

/* Main content container */
.container {
    padding: 20px;
}

/* Main heading for the domain name */
h1 {
    font-size: 5rem; /* Large font size */
    font-weight: 700;
    margin-bottom: -0.2em;
    color: #fff;
}

h3 {
    font-size: 1.9rem; /* Large font size */
    font-weight: 400;
    margin-bottom: -0.5em;
    color: #ccc;
}
/* Tagline paragraph */
p {
    font-size: 1.25rem;
    margin-bottom: 2em;
    color: #ccc;
}

/* Contact link styling */
.contact-link {
    font-size: 1.1rem;
    color: #007BFF;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
}

.contact-link:hover,
.contact-link:focus {
    border-bottom: 2px solid #007BFF;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    p {
        font-size: 1rem;
    }
}
