/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

/* Landing Page Styles */
.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #e0e0e0, #b3b3b3);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.domain-name {
    font-size: 2.5rem;
    color: #333;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
}

.domain-name span {
    color: #007bff;
    font-weight: bold;
}

.domain-name::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #007bff;
    margin: 10px auto 0;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    letter-spacing: 0.05rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .domain-name {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1rem;
    }
}
