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

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #6e45e2, #88d3ce, #ff9a9e);
    background-size: 400% 400%;
    animation: gradientBG 8s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    
}

/* Logo Styling */
.logo-container {
    margin-bottom: 1rem;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo-container img {
vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
    
}

h1 {
    font-size: 3rem;
    color: #6e45e2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.2rem;
    color: #333;
    margin: 1rem 0;
}

#countdown {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-size: 1.5rem;
}

#countdown div {
    background: #ff9a9e;
    padding: 1rem;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.contact-info {
    margin-top: 2rem;
    font-size: 1rem;
    color: #333;
}

.contact-info a {
    color: #6e45e2;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    #countdown {
        flex-direction: column;
        align-items: center;
    }
    #countdown div {
        margin-bottom: 0.5rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .tagline {
        font-size: 1rem;
    }
    #countdown {
        font-size: 1.2rem;
    }
}
