/*------------------------------------------------
body and links
------------------------------------------------*/

html,
body {
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--slate-300) 100%);
  color: var(--stone-600);
  font-family: 'Noto Serif', serif;
  font-size: 1em;
  margin: 0;
  min-height: 100vh;
  padding-bottom: 40px;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}


.flex-start-space {
  align-items: start;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flex-center-space {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
