@charset "utf-8";

:root {
  --main-color: rgb(100, 100, 255);
}

body {
  text-align: center;
  margin: 0;
  background: white;
  color: black;
}

header {
  background: var(--main-color);
  color: white;
  font-size: 24px;
  height: 51px;
  line-height: 51px;
  padding: 8px;
}

header h1 {
  font-size: 24px;
  color: white;
  margin: 0;
}