

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}


body {
    width: 100vw;
    height: 100vh;
    background:darkcyan;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

p {
    font-size: 13px;
}

.newyear {
    font-family: 'Inspiration', cursive;
    font-size: 50px;
    font-weight: 400;
    margin-top: 30px;
}

.counter {
    display: flex;
    margin-top: 30px;
}

.box {
    width: 50px;
    height: 50px;
    text-align: center;
}

.box h2 {
    font-size: 20px;
    font-weight: 500;
}

.box small {
    font-size: 10px;
}

@media (min-width:576px) {
    p {
        font-size: 18px;
    }

    .newyear {
        font-size: 100px;
    }

    .box {
        width: 100px;
        height: 70px;
    }

    .box h2 {
        font-size: 30px;
    }

    .box small {
        font-size: 15px;
    }
}

@media (min-width:768px) {
    p {
        font-size: 25px;
    }

    .newyear {
        font-size: 150px;
    }

    .box {
        width: 150px;
        height: 100px;
    }

    .box h2 {
        font-size: 50px;
    }

    .box small {
        font-size: 20px;
    }
}