/* Our default values set as CSS variables */
:root {
  --color-bg: #0F0F0F;
  --color-text-main: #E5E5E5;
  --color-primary: #FAFAFA;
  --wrapper-height: 87vh;
  --image-max-width: 300px;
  --image-margin: 3rem;
}

/* Basic page style resets */
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}

/* Footer & Navigation */
.footer {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
}

.footer a:link,
a:visited {
  color: var(--color-text-main);
  font-style: normal;
  font-weight: normal;
  border-style: none;
  text-decoration: none;
}
.footer a:hover {
  color: var(--color-primary);
}

.footer .links {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  white-space: nowrap;
  width: 100%;
}

@media (max-width: 400px) {
  .footer .links {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    width: 100%;
  }
}

/* Main Document */
body {
  font-family: monospace;
  line-height: 130%;
  background-color: var(--color-bg);
  color: var(--color-text-main);
}

/* Page structure */
.wrapper {
  min-height: var(--wrapper-height);
  display: grid;
  place-items: center;
  margin: 0 auto;
  max-width: 600px;
  padding: 1em;
} 

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title {
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  line-height: 105%;
  margin: 0;
}
