/*
  CSS RESET
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
  font-size: 100%;
}

ul,
ol {
  list-style: none;
}

img,
video {
  width: 100%;
}

a {
  color: black;
  text-decoration: none;
}


main {
  width: 100vw;
  height: 100vh;
}

@font-face {
  font-family: Straight;
  src: url(../fonts/Compagnon-Roman.otf);
}

/*
  STYLES
*/




.container {
  position: absolute;
  width: 100vw;
  height: auto;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}





