.countdown-content{
margin-top: 50px;
margin-bottom: 100px;
text-align: center;
font-size: 45px;
color: #dea900;
font-weight: bold;
}

.countdown-content .clock span{
background: #000;
padding: 10px;
font-size: 45px;
font-weight: bold;
color: #eee;
}

#days{
position: relative;
margin-right: 15px;
}

#days::before{
content: "DAYS";
position: absolute;
bottom: -35px;
left: 5px;
font-size: 24px;
color: #000;
}

#hours{
position: relative;
margin-right: 15px;
}

#hours::before{
content: "HRS";
position: absolute;
bottom: -35px;
left: 13px;
font-size: 24px;
color: #000;
}

#minutes{
position: relative;
margin-right: 15px;
}

#minutes::before{
content: "MIN";
position: absolute;
bottom: -35px;
left: 10px;
font-size: 24px;
color: #000;
}

#seconds{
position: relative;
}

#seconds::before{
content: "SEC";
position: absolute;
bottom: -35px;
left: 14px;
font-size: 24px;
color: #000;
}