@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@100;200;300;400;500;600;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  display: grid;
  place-items: center;
  height: 100vh;
  background-color: #000;
}

.text_color {
    background-color: #00ff01;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.time_wrapper {
    position: relative;
}

#time {
    font-size: 12rem;
    text-shadow: 0px 0px 40px #3bac2c;
}

#sec {
    position: absolute;
    bottom: 40px;
    font-size: 2rem;
}

#mid {
    position: absolute;
    top: 50px;
    font-size: 2rem;
}

.day_wrapper {
    display: flex;
    position: relative;
    left: 20px;
    justify-content: space-between;
}

.day_wrapper span {
    opacity: .3;
}

#showDate {
    position: relative;
    font-size: 1.5rem;
    left: 20px;
}

/* Responsive web design */
@media only screen and (max-width: 447px) {
    #time {
        font-size: 5rem;
    }
    #sec {
        font-size: 1rem;
        bottom: 20px;
    }
    #mid {
        font-size: 1rem;
        top: 23px;
    }
    .day_wrapper {
        left: 0;
    }
    .day_wrapper span {
        font-size: 0.8rem;
        padding-right: 10px;
    }
    #showDate {
        font-size: 1rem;
        left: 0;
    }
}