:root {
  box-sizing: border-box;
  font-size: 1.12em;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* ----- */



:root {
  --text-primary-rgb: 245, 240, 240;
  --text-secondary-rgb: 165, 140, 140;
  --background-rgb: 14, 14, 14;
  --border-subtle-rgb: 30, 30, 30;

  --text-primary: rgb(var(--text-primary-rgb));
  --text-secondary: rgb(var(--text-secondary-rgb));
  --background: rgb(var(--background-rgb));
  --border-subtle: rgb(var(--border-subtle-rgb));

  color: var(--text-primary);
  background-color: var(--background);

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin: 0;
  background-size: cover;
  background-position: 0%0%;
}

.cover {
  width: 250px;
  aspect-ratio: 1.75;
  background-color: gray;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

img {
  max-width: 100%;
  height: auto;
}

body> :is(header, main, footer) {
  padding-inline: max(2.5%, (100% - 800px) / 2);
}


#page-navigation {
  display: flex;
  justify-content: center;
  gap: 1em;
  padding-block-start: 1em;

  & a {
    display: flex;
    flex-flow: column;
    align-items: center;

    color: #b84d00;
    text-decoration: none;
  }

  & img {
    margin-block-end: 0.5em;
    border-radius: 8px;
  }
}