* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
    background-color: white;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.content {
    max-width: 800px;
    width: 100%;
}

.image-container {
    margin-bottom: 30px;
    max-width: 100%;
    align-self: center;
}

.image-placeholder {
    background-color: #f0f0f0;
    padding: 50px;
    border-radius: 8px;
    color: #666;
    font-style: italic;
}

.reference-image {
    max-width: 20%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: black;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #333;
    line-height: 1.5;
}

.coming-soon-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.coming-soon-btn:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .coming-soon-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .content {
        width: 90%;
    }
    
    .reference-image {
        max-width: 30%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
        padding: 0 10px;
    }
    
    .tagline {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 30px;
    }
    
    .coming-soon-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 15px;
    }
    
    .reference-image {
        max-width: 40%;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .coming-soon-btn {
        padding: 8px 20px;
    }
}
