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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    background-image: url('../images/forest_bkg.png');
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: auto 100%; /* adjust height as needed */
}

.container {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 200px;
    height: 200px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.domain {
    font-size: 2rem;
    font-weight: 600;
    color: #667eea;
    margin: 2rem 0;
}

.coming-soon {
    font-size: 1.25rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #f0f4f8;
    color: #2c3e50;
    border-radius: 50px;
    display: inline-block;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .domain {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 150px;
        height: 150px;
    }
}
