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

body {
    background: linear-gradient(to right, #00bfae, #006a6d);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
}

.landing-container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.description {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.time-box {
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.4);
    margin: 0 10px;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

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

.social-icon {
    margin: 0 15px;
    color: #fff;
    font-size: 30px;
    transition: transform 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .time-box {
        font-size: 1.5rem;
        padding: 15px 20px;
    }

    .social-icon {
        font-size: 25px;
    }
}
