* {
    box-sizing: border-box;
    margin: 0;
}

.countdownTitle{
    font-family: 'Amatic SC', cursive;
    font-weight: normal;
    font-size: 2em;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0px 2px 3px black;
}

.countdown {
    width: 92%;
    text-align: center;
    letter-spacing: 0px;
    margin-top: -7px;
}

#countdownClock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1em;
}

.subText {
    margin-top: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: .6em;
    line-height: 120%;
    text-align: center;
    color:#171e33;
}

.clockTitle {
    letter-spacing: 0px;
    font-size: 1em;
    margin-bottom: 5px;
}

.clockNums {
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    font-weight: 270;
    padding: 0px 5px;
    border-right: 0px solid #d8c5b2;
    text-align: center;
    line-height: 1em;
    color: #6f102a;
    font-size: 1.2em;
}

.clockNums:last-of-type {
    border-right: 0px solid #d8c5b2;
    min-width: 50px;
}

.clockDays {
    font-size: 2em;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    padding: 0px 20px;
    text-align: center;
    line-height: 90%;
    color: #6f102a;
    margin-bottom: 10px;
}

.clockTag {
    font-family: 'Amatic SC', cursive;
    line-height: 1.1em;
    font-size: .4em;
    text-transform: uppercase;
    color: #171e33;
}

.hms {
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 1020px) {
    #countdownClock {
        font-size: 1.3em;
    }

    .subText {
        font-size: .4em;
    }

    .clockNums {
        font-size: 1em;
    }
}