:root {
  --green: #439c49;
  --dark: #282a2b;
  --text: #222;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  min-height: 100vh; /*need to test later if this is indeed needed or can be omitted*/
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}
