@font-face {
  font-family: "Share Tech Mono";
  src: url("ShareTechMono-Regular.ttf") format("truetype");
}

:root {
  --clock-color: #F5C4FF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #000000;
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.clock-app {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  font-family: "Share Tech Mono", monospace;
  color: var(--clock-color);
  text-align: center;
  user-select: none;
}

.date-row {
  font-size: 5.8vw;
}

.main-time {
  font-size: 22vw;
  line-height: 1;
  text-shadow: 13px 10px 4px rgba(245, 196, 255, 0.5);
}

.bottom-row {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

.city-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.city-label {
  font-size: 4vw;
}

.city-time {
  font-size: 5.8vw;
}
