:root {
  --general-padding: 0 5% 0 5%;
}

@media only screen and (min-width: 992px) {
  :root {
    --general-padding: 0 10% 0 10%;
  }
}
/* This changes all the animations globally */
:root {
  --animate-duration: 100ms;
  --animate-delay: 2.0s;
}

html {
  scroll-behavior: smooth;
}

html, body {
  padding: 0;
  margin: 0;
  background-color: #f6f2e8;
}

/*
$grid-breakpoints-small:576px;
$grid-breakpoints-medium:768px;
$grid-breakpoints-large:992px;
$grid-breakpoints-verylarge:1200px;
$grid-breakpoints-maxi:1400px;
*/
nav.simplenav {
  padding: 0;
}
nav.simplenav div {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
  padding: 0;
}
nav.simplenav div a {
  font-size: 1.2m;
  color: #1e1d1b;
  text-decoration: none;
  border-bottom: 1px solid #ac1124;
  padding: 10px;
  margin: 10px;
  transition: all 0.5s;
}
nav.simplenav div a:hover {
  cursor: pointer;
  background-color: #ac1124;
  color: #f6f2e8;
  border-radius: 5px;
}

@media only screen and (min-width: 992px) {
  nav.simplenav {
    padding: var(--general-padding);
  }
  nav.simplenav div {
    justify-content: left;
  }
}

/*# sourceMappingURL=simplenav.css.map */
