html, body {
  height: 100%;
  margin: 0;
}

body {
  background-image: url(rain.svg);
  background-color: #191724;
  color: #e0def4;
  font-family: Verdana, sans-serif;
}

#background {
  /* Fill the viewport */
  width: 100vw;
  height: 100vh;
  /* Center content when it fits; keep it horizontally centered always */
  display: grid;
  place-items: center;
  /* When content overflows, scroll within this parent */
  overflow: auto;
}

#content {
  /* Prevent horizontal overflow and respect padding/borders */
  max-width: 100%;
  box-sizing: border-box;
  background-color: #1f1d2e;
  border-radius: 12px;
}

.inner {
  padding-left: 36px;
  padding-right: 36px;
}

.header {
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 36px;
  padding-right: 36px;
  background-color: #26233a;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  display: grid;
  place-items: center;
}

h1 {
  text-align: center;
}

.subtitle {
  text-align: center;
}

.social-links {
  padding-top: 36px;
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 36px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

a:hover {
  color: #31748f;
}

.pfp {
  border-radius: 100%;
}

.divider {
  margin-top: 36px;
  margin-bottom: 36px;
  margin-left: 12px;
  margin-right: 12px;
  border: none;
  border-top: 1px solid #6e6a86;
}

/*# sourceMappingURL=index.css.map */
