@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
body {
    font-family: 'Roboto Mono', monospace;
    color: #d4d4d4;
    background-color: #1e1e1e;
}
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%
}
#time-text {
    font-size: 1000%;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0.2em;
}
#day-border, #hour-border {
    margin-bottom: 15px;
}
#day {
    transition: width 0.5s ease;
}
#hour {
    transition: width 0.5s ease;
}
#minute {
    transition: width 0.5s;
}
.menu {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 18px;
}
.menu p {
    margin: 0px 0px;
}
.border {
    border-color: #d4d4d4;
    border-width: 1px;
    border-style: solid;

}
.infill {
    color: #d4d4d4;
    background-color: #d4d4d4;
    height: 100%;
    height: 36px;
}
@media (max-width: 800px) {
    #time-text {
        font-size: 600%;
    }
    .w3-grey {
        height: 24px;
    }
    /*#day-border, #hour-border {
        margin-bottom: 10px;
    }*/
}
@media (max-width: 500px) {
    #time-text {
        font-size: 400%;
    }
    /*.w3-grey {
        height: 18px;
    }
    #day-border, #hour-border {
        margin-bottom: 7px;
    }
    .menu {
        bottom: 12px;
        right: 12px;
        font-size: 15px;
    }*/
}
@media (max-width: 350px) {
    #time-text {
        font-size: 200%;
    }
    /*.w3-grey {
        height: 12px;
    }
    #day-border, #hour-border {
        margin-bottom: 5px;
    }
    .menu {
        bottom: 9px;
        right: 9px;
        font-size: 12px;
    }*/
}
@media (max-width: 160px) {
    #time-text {
        font-size: 120%;
    }
    /*.w3-grey {
        height: 6px;
    }
    #day-border, #hour-border {
        margin-bottom: 3px;
    }
    .menu {
        bottom: 6px;
        right: 6px;
        font-size: 9px;
    }*/
}
@media (max-width: 100px) {
    #time-text {
        font-size: 60%;
    }
    /*.w3-grey {
        height: 5px;
    }
    #day-border, #hour-border {
        margin-bottom: 2px;
    }*/
}