/*@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
:root {
    --purple-dark: #5F546E;
    --purple-light: #827593;
    --gray-light: #E5E3E8;
    --gray-dark: #A5A2A9;
    --light: #fcf8fb;
    --transition: all 150ms cubic-bezier(.46, 1.13, .67, .87);
}*/

.clock {
    display: flex;
    justify-content: flex-end;
}

.clock-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*background-color: var(--purple-dark);*/
    position: relative; /* absolute */
    /*top: 50%;*/
    /*transform: translate(-50%, -50%);*/
    /*box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.825);*/
    padding: 20px;
}

.clock-container span {
    text-transform: uppercase;
    font-size: 10px;
    text-align: right;
    display: block;
}

.intro .clock-container p {
    font-size: 32px; /* 60px 32px */
    color: var(--light); /* var(--light) */
    font-weight: 100;
    margin-bottom: 0px;
    filter: drop-shadow(1px 1px 1px #555);
}

.clock-container p:first-letter {
    letter-spacing: 5px;
}

.colon {
    width: 5px; /* 3px */
    height: 15px;
    position: relative;
    margin-left: 6px; /* 10px */
    margin-right: 3px; /* 10px */
}

.colon::before {
    content: '';
    width: 3px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.colon::after {
    content: '';
    width: 3px;
    height: 3px; /* var(--size) */
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 50%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media all and (max-width: 640px) {

    .intro .clock-container p {
        font-size: 60px; /* 60px 32px */
    }

    .clock-container {
        padding-bottom: 0;
    }
}
