body {
  background-color: #eee; margin: 0;
}

#contentFrame {
  width: 520px; height: 205px;
  border-radius: 10px; background-color: #fff;
  box-shadow: #111 1px 1px 10px;
  position: fixed; transform: translate(-50%, -50%);
  top: 50%; left: 50%;
}

#contentFrame h3 {
  font-family: Trebuchet MS, Verdana, sans-serif;
  width: 100%; text-align: center; margin: 0;
  margin-top: 3px;
}

#timeLabels {
  display: flex; flex-direction: row; gap: 0;
  align-items: center; font-family: monospace, sans-serif;
  background-color: transparent; color: black; position: fixed;
  transform: translate(-50%, -50%); top: 50%; left: 50%; 
  font-size: 30px;
}

#timeLabels h1 {
  font-size: 65px;
}

#buttons {
  width: fit-content; background-color: #fff;
  color: #000; display: flex; flex-direction: row;
  gap: 3px; align-items: center; position: fixed;
  transform: translate(-50%, -50%); left: 50%;
  top: 80%;
}

#buttons button {
  width: 90px; height: 30px; background-color: #0099ff;
  text-align: center; color: white; cursor: pointer;
  border-radius: 15px; border-style: solid;
  border-color: #000;
}

