body {
    font-family: 'Inter', sans-serif;
    background-color: #fff; /* Changed body background to white */
    color: #333;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    padding: 30px;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    width: 100%;
    max-width: none;
}

.hero-image {
    width: 100%;
    max-height: 100px; /* Made the logo much smaller */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.coming-soon {
    color: black;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.tagline {
    font-style: italic;
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.countdown {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.time {
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
}

.social-links {
    margin-top: 20px;
}

.instagram-logo {
    width: 40px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        width: 100%;
        padding: 20px;
    }

    .hero-image {
        max-height: 80px; /* Adjusted for smaller screens */
    }

    .coming-soon {
        font-size: 2em;
    }

    .countdown {
        flex-direction: column;
        align-items: center;
    }

    .time {
        margin-bottom: 10px;
        font-size: 1.2em;
    }
}
