:root {
  --background: #282828;
  --base-text-color: #f8f8f2;
  --meta-info-color: #717171;

  @media screen and (prefers-color-scheme: dark) {
    --background: #f3f3f3;
    --base-text-color: #1f1f1f;
    --meta-info-color: #898989;
  }
}

body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--background);
  color: var(--base-text-color);
}

body {
  justify-content: center;
  align-self: center;
  height: 100%;
  user-select: none;
  gap: 15px;
  padding: 50px 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

img {
  max-width: 200px;
  max-height: 200px;
  height: auto;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 500px;
  padding: 50px 0 0 0;
}

.links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 0 50px 0;
}
