@font-face {
  font-family: 'PT Mono';
  src: url('/fonts/ptmono-regular.ttf');
}

* {
  margin: 0;
  text-decoration: none;
  font-family: 'PT Mono', sans-serif;
  color: #24f29c;
}

html, body {
  background-color: #121212;
  box-sizing: border-box;
}

.page {
  height: 100vh;
  display: grid;
  place-items: center;
}

.page-wrapper {
  display: grid;
  place-items: center;
  text-align: center;
}

h1 {
  font-size: 5em;
  letter-spacing: -0.04em;
}

p {
  font-size: 1.5em;
  margin: 15px 0;
}

.divider {
  color: white;
}

.icon {
  padding: 15px;
  border-radius: 50%;
}

.icon:hover {
  cursor: pointer;
  background-color: rgb(22, 22, 22);
}

.content {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  color: #ffffff;
  padding: 2rem;
  box-sizing: border-box;
  font-family: "Comfortaa", cursive;
  font-size: initial;
  margin-bottom: 4rem;
  line-height: 1.6rem !important;
}

.content h2 {
  font-size: 2rem;
}

.content i {
  font-size: 1.8rem;
  font-style: normal;
}

.content a,
.content b {
  color: #7477fc;
}

.content p {
  font-size: 1rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.content span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.content div {
  background-color: #202020;
  padding: 0.65rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.content .note {
  transform: translateY(1.6rem);
  display: block;
  opacity: 1;
  font-size: 0.75rem;
  font-style: italic;
  margin-bottom: 2.6rem;
}

.content img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}