body{
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: cursive;
    background-color: slateblue;
}

h2{
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.year{
    font-size: 5em;
    color: white;
    font-weight: bold;
}

.countdown{
    margin: 30px;
    background-color: rgba(0,0,0,.3);
    width: 100%;
    color: white;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown div{
    height: 30px;
    margin: 0 15px;
    font-size: 2.5em;
    font-weight: 500;
    margin-top: -25px;
}

.countdown div::before{
    content: "";
    position: absolute;
    bottom: 210px;
    font-size: .35em;
    line-height: 35px;
}

.countdown #days::before{
    content: "Days";
}

.countdown #hours::before{
    content: "Hours";
}

.countdown #minutes::before{
    content: "Minutes";
}

.countdown #seconds::before{
    content: "Seconds";
}

.countdown #month::before{
    content: "Month";
}

.notActive {
    color: transparent;
    width: 0;
}