* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --branco: #f0f0ea;
}

@font-face {
  font-family: haas_medium;
  src: url("fonts/NeueHaasDisplayMediu.woff");
}

body {
  position: relative;
  margin: 0;
  padding: 20px;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
}

#videocontainer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  overflow: hidden;
}

video {
  position: absolute;
  height: 300px;
  /*mirror cam*/
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  z-index: 10;
}

h1 {
  color: var(--branco);
  font-family: haas_medium;
}

#text-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
