@import url('https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&display=swap');

html,
body {
  margin: 0;
  padding: 64px 24px;
  width: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #fcf8f6;
  color: #7f5c52;
  display: flex;
  flex-direction: column;
  place-items: center;
}

header>a {
  display: flex;
  place-items: center;
  color: #7f5c52;
  text-decoration: none;
}

header>a>img {
  width: 64px;
  height: 64px;
}

header>a>span {
  font-family: "Inter";
  font-size: 32px;
  margin-left: 16px;
}

body>div {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  color: white;
  background: #e08374;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  font-family: "Fira Mono", monospace;
  font-size: 16px;
  padding: 8px 12px;
  text-align: right;
  cursor: pointer;
  user-select: none;
}

main {
  flex: 1;

  display: flex;
  place-items: center;
  place-content: center;
  text-align: center;
  flex-direction: column;

  font-family: "Fira Mono", monospace;

  max-width: 600px;
}

.loader {
  width: 64px;
  height: 64px;
  border: 4px solid #e08374;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  margin-bottom: 32px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}