@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    background: aquamarine;
    overflow: hidden;
}

h2 {
    color: red;
    font-size: 1.8rem;
    letter-spacing: 4px;
    text-align: center;
    justify-content: center;
    align-items: center;
}
h2 span{
    color: rgb(8, 245, 8);
}
.year{
    font-size: 3rem;
    color: rgb(8, 245, 8);
    font-weight: bold;
}

.countdown{
    margin: 30px;
    background: rgba(0, 0, 0,.3);
    width: 100%;
    color: wheat;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown div{
    margin: 0 15px;
    font-size: 2.5rem;
    margin-top: -25px;  
    position: relative;
    text-align: center;
    width: 100px;
}

.countdown div::before{
    content: '';
    position: absolute;
    bottom: -30px;
    font-size: .9rem;
    line-height: 35px;
    letter-spacing: 1px;
    width: 100%;
    background: rgb(10, 223, 10);
    left: 0;
}

.countdown #day::before{
    content: 'Hari';
}

.countdown #hour::before{
    content: 'Jam';
}

.countdown #minute::before{
    content: 'Menit';
}

.countdown #second::before{
    content: 'Detik';
}
footer{
    background: transparent;
    bottom: 0;
    position: absolute;
    width: 100%;
    text-align: center;
}

footer h3{
    color: antiquewhite;
}

footer a{
    color: rgb(10, 223, 10);
    text-decoration: none;
}
