@font-face {
  font-family: InterRegular;
  src: url(/static/fonts/Inter-Regular.ttf);
}

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

body {
  font-family: InterRegular, sans-serif;
  color: #f2e8cf;
}

body.working {
  background-color: #6a994e;
}

body.broken {
  background-color: #bc4749;
}

body.running {
  background-color: #219ebc;
}

.center {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 20vw;

}

h2 {
  font-size: 4vw;
}