:root {
  --color-jet: #b993d6;
  --color-light-gray: #8ca6db;
  --font-pacifico: "Pacifico", cursive;
  --font-roboto: "Roboto", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-roboto);
  padding: 2rem;
  color: var(--color-jet);
}

h1 {
  font-family: var(--font-pacifico);
  font-size: calc(4vw + 36px);
}

p {
  max-width: 36rem;
  text-align: center;
  line-height: 1.4;
  padding-bottom: 0.8rem;
}

.pronouns {
  font-family: "Times New Roman", Times, serif;
}

.gradient-text {
  background-color: #000000;
  background-image: linear-gradient(
    45deg,
    var(--color-jet) 0%,
    var(--color-light-gray) 100%
  );
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

aside {
  position: fixed;
  top: 0;
  right: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

aside img {
  height: 2rem;
}

aside a {
  padding: 0 1rem;
}

footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
}
