:root {
  --body-color: #000;
  --body-background-color: #f5f5f5;
  --page-background-color: #fff;
  
  --link-color: #777;
  --link-hover-color: #000;
}

[data-theme="dark"] {
  --body-color: #ccc;
  --body-background-color: #000;
  --page-background-color: #111;
  
  --link-color: #aaa;
  --link-hover-color: #eee;
}

html {
  height: 100%;
}

body {
    font-family: "Gloria Hallelujah", serif;
    font-weight: 400;
    font-style: normal;
    height: 100%;
    margin: 0;
    padding: 0;
    color: var(--body-color);
    background-color: var(--body-background-color);
    line-height: 1.975;
}

body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(assets/poetry-logo.svg);
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.02;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h1 {
    font-size: 10vw;

    background: #121FCF;
    background: linear-gradient(90deg,
        rgba(255, 0, 0, 1) 0%,
        rgba(255, 255, 0, 1) 33%,
        rgba(0, 192, 255, 1) 66%,
        rgba(192, 0, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}