* {
    padding: 0;
    margin: 0;
    font-family: "Lato", sans-serif;
    font-size: 150px;
}

body {
    background: #191919;
}

a {
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 20px;
    text-decoration: none;
    margin: 20px;
    color: rgba(255, 255, 255, 0.35);
}

.clock {
    color: rgba(50, 50, 50, 0.35);
    display: block;

    text-align: center;
}

.current-date {
    color: #ffe548;
    display: block;
    text-align: center;
    text-shadow: 0px 0px 20px #f58732;
    font-size: 50px;
}

.clock p.separator,
.clock section,
.current-date p.separator,
.current-date section {
    display: inline-block;
}

.clock section div p,
.current-date section div p {
    position: absolute;
    width: 60px;
    text-align: center;
    transition: 0.3s ease color, 0.3s ease text-shadow;
}

.clock p.separator {
    font-size: 60px;
    vertical-align: top;
    margin-top: 20px;
    font-size: 150px;
}

.clock section div,
.current-date p.separator {
    display: inline-block;
    width: 60px;
    height: 120px;
}

/* Glow effect for clock and date */
.clock p.separator,
.clock section p.active,
.current-date p.separator,
.current-date section p.active {
    color: #ffe548;
    text-shadow: 0px 0px 20px #f58732;
}

@media screen and (max-width: 600px) {
    .clock,
    .current-date {
        font-size: 2em;
    }
}

p {
    margin: 0;
}
