﻿:root {
  font-family: 'GFS Didot', serif;
  color-scheme: dark;

  --text: #c5b8db;
  --background: #160813;
}

* {
  box-sizing: border-box;
}

html {
  display: flex;
  justify-content: center;
  align-content: center;
  min-height: 100%;
  background-color: black;
  background: url(./assets/background.png);
  background-size: cover;
  background-repeat: no-repeat;
}

body {
  margin: 5rem;
  padding: 3rem;
  display: flex;
  align-self: center;
  flex-direction: column;
  max-width: 700px;
  border-radius: .75rem;
  border: 1px solid rgb(from var(--text) r g b / 0.2);
  background-color: var(--background);
  box-shadow: #000000 0px 5px 20px 10px;
}

header {
  text-align: center;
  margin-bottom: 1.5rem;
}

h1 {
  margin: 0;
  font-size: 3rem;
  color: var(--text);
}

h2 {
  margin: 0.5rem;
  font-size: 1.5rem;
  color: var(--text);
}

h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--text);
}

p {
  margin: 0;
  line-height: 1.5rem;
  color: var(--text);
}