/**
 * Styles 
 */

* {
  box-sizing: border-box;
}
html, body {
  font-family: Calibri;
  position: relative;
  background-color: var(--color-primary--1);
  color: var(--color-white);
  position: fixed;
}
html {
  font-size: 16px;
  width: 100%;
  height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5rem;
  margin: auto;
  overflow: hidden;
}
body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/**
 * Text
 */

h1 {
  font-weight: 400;
}
.colored-text {
  color: var(--color-secondary--1);
}

/**
 * Image
 */

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  color: var(--color-dark);
}