:root {
  --body-background: #f8f7ef;
  --body-text: #202020;
}

html {
  font-size: 24px;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--body-background);
  color: var(--body-text);
  font-family: "Raleway", sans-serif;
  min-width: 350px;
  max-width: 100vw;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--body-text);
  transition: color 0.4s ease-out;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  background-color: #deddd3;
  height: 200px;
}

footer img {
  max-width: 34px;
  max-height: 34px;
  align-self: center;
  margin: 1em;
}

footer a {
  align-self: center;
}



main {
    height: 100%;
}

#downloadSVG {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  margin-left: 0.3em;
  transition: 0.3s;
}

#downloadSVG:hover {
  opacity: 1;
}

#headerDesktop {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1em 12em;
  justify-content: space-between;
  list-style-type: none;
  position: fixed;
  width: 100%;
  background-color: #f8f7ef;
  transition: .5s;
  z-index: 99;
  top: 0;
}

#headerDesktop > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  transition: 0.1s ease-out;
}

#headerDesktop > ul li {
  margin-left: 2em;
}

#headerDesktop > ul li a:hover {
  color: red;
}

#headerDesktop.hidden {
    transform: translate3d(0,-100%,0);
}

#headerLogo {
  max-height: 24px;
  max-width: 100%;
}
