@font-face {
    font-family: Digital-7 Mono;
    src: url(digital-7.ttf);
  }
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body {
    height: 100vh;
    display: grid;
    place-items: center;
    font-family: Digital-7 Mono;
    background-color: #000;
  }
  .text__color {
    background: linear-gradient(to bottom, #2980b9, #2c3e50);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }
  .time__wrapper {
    position: relative;
  }
  #time {
    text-shadow: 0 0 55px #2980b9;
    font-size: 4.5rem;
  }
  #med {
    position: absolute;
    top: 10px;
    right: 0;
  }
  .day__wrapper {
    display: flex;
    justify-content: space-between;
  }
  .day__wrapper span {
    font-size: 0.9rem;
    opacity: 0.4;
    font-weight: 600;
  }