@import url('https://fonts.googleapis.com/css2?family=Intel+One+Mono:ital,wght@0,300..700;1,300..700&display=swap');
html {
  font-size: clamp(11px, 1.5vw, 16px);
}
body {
  background-color: #303336;
  color: #fafafa;
  transition: background-color 1s ease, color 1s ease;
}
body.light {
  background-color: #fafafa;
  color: #030308;
}
body.midnight {
  background-color: #101014;
  color: #fafafa;
}
a {
  color: #fafafa;
}
.back {
  width: 16rem;
  float: left;
  font-size: 0.8rem;
  font-family: "Intel One Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.large {
  font-family: "Intel One Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.medium {
  font-family: "Intel One Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.small {
  font-family: "Intel One Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
footer {
  font-family: "Intel One Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.title {
  font-size: 2em;
}
.header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.back {
	justify-self: start;
}
.title {
	justify-self: center;
}
h1 {
  font-size: 3em;
  margin: 0.1em;
}
h6 {
  font-size: 1em;
  margin: 0.1em;
}
p {
  margin: 0;
}
footer {
  font-size: 0.7em;
  color: #aaa;
  margin: 4px;
}
button {
  display: inline-flex;
  justify-content: center;
  background-color: #202326;
  border-radius: 3em;
  font-size: 0.8rem;
  text-align: center;
  padding: 1em;
  margin: 1em;
  color: #fafafa;
  transition: scale 0.2s ease;
}
button:hover {
  scale: 1.05;
  cursor: pointer;
}
button:active {
  scale: 0.98;
  cursor: default;
}
#personalize {
  background: linear-gradient(135deg, #fa00fa 0%, #fafa00 100%);
  box-shadow: 0 0 27px #fafacb;
  color: #000;
  transition: all 0.2s ease-out;
}
#personalize:hover {
  box-shadow: 0 0 42px #fafaba;
  color: #fafafa;
}
