body {
  background-color: grey;
}
h1, h2, h3, h4 {
  width: auto;
  height: auto;
  margin: 0;
}
#Positioning1 {
  background-color: red;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: none;
}
#Positioning2 {
  background-color: red;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: none;
}
h1 {
  cursor: progress;
  position: absolute;
  font-size: 12.5vw;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
h2 {
  position: absolute;
  font-size: 30px;
  left: 50%;
  top: 25%;
  transform: translateX(-50%) translateY(-50%);
}
h3 {
  position: absolute;
  font-size: 15px;
  left: 50%;
  top: 42.5%;
  transform: translateX(-50%) translateY(-50%);
}
h4 {
  position: absolute;
  font-size: 30px;
  left: 50%;
  top: 75%;
  transform: translateX(-50%) translateY(-50%);
}
#fileInput {
  position: absolute;
  left: 50%;
  top: 57.5%;
  transform: translateX(-50%) translateY(-50%);
}
#test {
  display: none;
}
.Tinput {
  height: auto;
  width: 30px;
  font-size: 25px;
  color: black;
}
#settingsImg {
  position: absolute;
  width: 50px;
  height: auto;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  z-index: 1;
}
#settings {
  position: absolute;
  width: 400px;
  height: 175px;
  right: 45px;
  bottom: 42px;
  border-radius: 15px 15px 0px 15px;
  background-color: rgba(255, 255, 255, 0.5);
}
#settingCheck {
  display: none;
}
#settingsImg:hover {
  scale: 1.05;
}
#settingsImg:active {
  scale: 0.9 !important;
  filter: brightness(120%);
}
#Hr, #Min, #Sec {
  display: none;
}
@keyframes Alarm {
  0% {color: black;}
  12.5% {color: #cf0808;}
  25% {color: #ffff00;}
  37.5% {color: #cf0808;}
  50% {color: #ffff00;}
  62.5% {color: #cf0808;}
  75% {color: #ffff00;}
  87.5% {color: #cf0808;}
  100% {color: black;}
}