body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 3rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    color: #727272;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    color: #666;
}

.countdown {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #2c3e50;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 40px;
    height: 40px;
}

.social-icons a {
    margin: 0 15px;
    font-size: 1.5rem;
    color: #4a4a4a;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #3498db;
}


