@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #eeeeee;
    color: #383838;
    text-align: center;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow-y: auto;
}
h1 {
    font-size: 36px;
    margin-top: 0rem;
}
p {
    font-size: 18px;
    opacity: 0.8;
    animation: fadeIn 2s ease-in-out;
}
.countdown {
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0;
    color: white;
    background-color: #5e17eb;
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-block;
    animation: fadeIn 2.2s ease-in-out;
}
.features, .contact {
    margin-top: 40px;
    padding: 20px;
    background: #d8cefe;
    border-radius: 10px;
    animation: fadeIn 3.5s ease-in-out;
    width: 80%;
}
.features h2, .contact h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.features ul, .contact ul {
    list-style: none;
    padding: 0;
}
.features li, .contact li {
    font-size: 18px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.features li i, .contact li i {
    margin-right: 10px;
}
.social-icons {
    margin-top: 20px;
    display: inline-block;
    animation: bounce 1s infinite ease-in-out;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
.social-icons a {
    color: #383838;
    font-size: 24px;
    margin: 0 10px;
    transition: 0.3s;
}
@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    .features, .contact {
        width: 100%;
    }
}