body {
  background-color: #949494;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  user-select: none;
  -webkit-user-select: none; /* Chrome, Safari, Opera */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Edge, IE */
}
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: none;
  position: absolute;
  font-size: 12.5vw;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 2px lightgrey;
  -moz-text-stroke: 2px lightgrey;
  text-stroke: 2px lightgrey;
}
h2 {
  position: absolute;
  font-size: 30px;
  left: 50%;
  top: 25%;
  transform: translateX(-50%) translateY(-50%);
  margin: 0;
  padding: 0;
}
h3 {
  position: absolute;
  font-size: 14px;
  left: 50%;
  top: 45%;
  transform: translateX(-50%) translateY(-50%);
  margin: 0;
  padding: 0;
}
h4 {
  position: absolute;
  font-size: 30px;
  left: 50%;
  top: 72.5%;
  transform: translateX(-50%) translateY(-50%);
  margin: 0;
  padding: 0;
}
h5 {
  opacity: 0;
  position: absolute;
  font-size: 30px;
  left: 50%;
  top: 77.5%;
  transform: translateX(-50%) translateY(-50%);
  font-weight: bold;
  margin: 0;
  padding: 0;
}
h6 {
  position: absolute;
  font-size: 30px;
  left: 50%;
  top: 77.5%;
  transform: translateX(-50%) translateY(-50%);
  margin: 0;
  padding: 0;
}
#fileInput {
  position: absolute;
  left: 50%;
  top: 60%;
  font-size: 12px;
  transform: translateX(-50%) translateY(-50%);
  margin: 0;
  padding: 0;
}
#test {
  display: none;
}
.Tinput {
  height: auto;
  width: 28px;
  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: 25vw;
  min-width: 318px;
  height: 20vh;
  min-height: 150px;
  right: 45px;
  bottom: 42px;
  border-radius: 15px 15px 0px 15px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0;
  padding: 0;
}
#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;}
}
@keyframes Warn {
  0% {opacity: 0;color:grey;font-size: 30px;}
  20%{opacity: 1;color:red;font-size: 35px;}
  50%{opacity: 1;color:orange;font-size: 35px;}
  80%{opacity: 1;color:red;font-size: 35px;}
  100%{opacity: 0;color:grey;font-size: 30px;}
}