:root {
  --rosewater: #f5e0dc;
  --flamingo: #f2cdcd;
  --pink: #f5c2e7;
  --mauve: #cba6f7;
  --red: #f38ba8;
  --maroon: #eba0ac;
  --peach: #fab387;
  --yellow: #f9e2af;
  --green: #a6e3a1;
  --teal: #94e2d5;
  --sky: #89dceb;
  --sapphire: #74c7ec;
  --blue: #89b4fa;
  --lavender: #b4befe;
  --text: #cdd6f4;
  --subtext1: #bac2de;
  --subtext0: #a6adc8;
  --overlay2: #9399b2;
  --overlay1: #7f849c;
  --overlay0: #6c7086;
  --surface2: #585b70;
  --surface1: #45475a;
  --surface0: #313244;
  --base: #1e1e2e;
  --mantle: #181825;
  --crust: #11111b;
}

body {
  background: linear-gradient(45deg, var(--base), var(--crust));
  color: var(--text);
  font-family: 'Courier New', Courier, monospace;
  padding: 0 40px;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100vh;
}

h1 { font-size: 3.2em }
h2 { font-size: 2.5em }
h3 { font-size: 2.17em }
h4 { font-size: 2em }
h5 { font-size: 1.83em }
h6 { font-size: 1.67em }
h1, h2, h3, h4, h5, h6 {
  font-weight: 100;
}

header {
  padding: 10vh 0 18vh 0;
}
header section {
  border-left: 7px solid var(--mauve);
  padding-left: 20px;
  margin: 15vh 0 0 -27px;
}
header h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}
header h1 {
  color: var(--mauve);
  margin-left: -4px;
}
header #status-code, #status-message {
  color: var(--surface0);
  text-align: right;
}

header p {
  margin-top: 0;
}

main section:nth-of-type(1) h2 {
  color: var(--maroon)
}

main section:nth-of-type(2) h2 {
  color: var(--peach)
}

main section:nth-of-type(3) h2 {
  color: var(--yellow)
}

main h2 {
  text-align: center;
}

main {
  display: grid;
  row-gap: 5em;
}