*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-primary);
  font-size: clamp(1rem, 1.2vw, 2.0rem);
  line-height: 1.4em;
  color: rgba(0, 0, 0, 1.0);
  background: rgba(255, 255, 255, 1.0);
  font-size: clamp(1em, 1.2vw, 2.0em);
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.03em;
  text-rendering: optimizeLegibility;
  /* word-break: break-all;
  -webkit-hyphens: auto; */
  /* hyphens: auto; */
}

article,
details,
form,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

h1 {
  line-height: 1.1em;
  color: rgba(255, 255, 255, 1.0);
  font-size: clamp(2.0rem, 2.8vw, 3.75rem);
  text-shadow: 0.03em 0.03em 0.1em rgba(33, 33, 33, 0.5);
}

@media all and (min-width: 900px) {

  h1 {
    margin-top: 23vw;
  }
}

h2,
h3,
h4,
h5,
h6 {
  /* margin: 4rem 0 1rem 0; */
  line-height: 1.25em;
}

h2 {
  text-transform: uppercase;
}

h3 {
  margin-top: 2.5em;
}

p {
  margin: 0 0 1.0rem 0;
}

a {
  border: 0;
  outline: 0 none;
  padding: 0 0.15rem;
  text-decoration: none;
  color: rgb(61, 109, 175);
  border-radius: 0.15rem;
}

main a:hover,
footer a:hover {
  color: rgba(255, 255, 255, 1.0);
  background-color: rgb(61, 109, 175);
}

li {
  margin: 0;
  padding: 0;
  line-height: 1.75rem;
}

iframe {
  max-width: 100%;
}

/* img fullwidth */
.fullwidth {
  width: 100%;
  height: auto;
}

.float-end {
  display: flow-root;
}