:root { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
  :root { font-family: 'Inter var', sans-serif; }
}
body {
    background-color: black;
}
.clock{
    display: block;
    height: 100%;
    width: 100%;
    margin: 50 auto;
}
.HtmlIsland{
    /*outline: solid 1px yellow;
    outline-offset: -1px;*/
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.timerText{
  /*outline: solid 1px orange;
  outline-offset: -1px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 320px;
  font-weight: 200;
  text-align: center;
  height:360px;
  margin-top: 0px;
  margin-right: 0px;
  font-feature-settings: "tnum";
}   
input[type=text] {
  /*outline: solid 1px orange;
  outline-offset: -1px;*/
  background-color: #404040;
  color: white;
  font-size: 360px;
  font-weight: 100;
  height:360px;
  margin-top: 0px;
  margin-right: 0px;
  font-feature-settings: "tnum";
}   
.buttonArea{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 100;
    text-align: center;
    height:120px;
    margin-top: 0px;
    margin-right: 0px;
    font-feature-settings: "tnum";
}
.button{
  width: 240px;
  height: 80px;
  line-height: 80px;
  cursor: pointer;
  font-size: 64px;
  font-weight: 200;
  border: solid;
  border-radius: 40px;
  margin-left: 10px;
  margin-right: 10px;
  color: white;
  background-color:black;
}
#startButton{
  color: #006000;
}
#startButton:hover{
  color: #00a000;
}
#stopButton{
  color: darkred;
}
#stopButton:hover{
  color: red;
}
#resetButton{
  color: #404040;
}#resetButton:hover{
  color: gray;
}
