*, ** {
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  background-color: var(--white);
  color: var(--body-copy);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -font-smoothing: antialiased;
}

body.no_scroll {
  overflow: hidden;
}

a, button, input[type=submit], select {
  cursor: pointer;
}

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

sub,
sup {
  font-size: 50%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.7em;
}

sub {
  bottom: -0.25em;
}

#skip a {
  display: block;
  position: absolute;
  left: -999px;
  top: -999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#skip a:focus {
  left: auto;
  top: auto;
  width: 30%;
  height: auto;
  overflow: auto;
  margin: 10px 35%;
  color: var(--black);
  background-color: var(--white);
  padding: 5px;
  border-radius: 15px;
  border: 4px solid var(--black);
  text-align: center;
  font-size: 1.2em;
  z-index: 999;
}