:root {
  --primary-color: rgba(58, 57, 61, 1);
  --secondary-color: rgba(58, 57, 61, 0.7);
}

body, html {
  background-color: rgba(242, 242, 242, 1);
  user-select: none;
  display: flex;
  flex-direction: column;
  color: var(--primary-color);
  font-family: "Inter";
  font-size: 14px;
  line-height: 18px;
  height: 100%;
  overflow: hidden;
}
body {
  padding-bottom: 40px;
}

.gloock-regular {
  font-family: "Gloock", serif;
  font-weight: 400;
  font-style: normal;
}


#header {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#maki-icon {
  width: 38px;
  height: 38px;
  background-image: url("../images/maki.png");
  background-size: contain;
  background-repeat: no-repeat;
}

#footer {
  font-family: "Inter";
  font-size: 12px;
  color: var(--secondary-color);
  position: absolute;
  bottom: 24px;
  width: 100%;
  display: inline-flex;
  justify-content: center;
}
a {
  color: var(--secondary-color);
  text-decoration: none;
}