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

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

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


.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;
}

/* makes images responsive */
img {
  width: 100%;
  height: auto;
}
