 {
    box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: myFirstFont;
  font-size: 0.9em;
  line-height: 2.5em;
  background-color: black;
  color: white;
  font-weight: 100;
}

@font-face {
  font-family: myFirstFont;
  src: url(../font/ResistSans.otf);
}

/* HEADER */

header{
  position: fixed;
  width: 99%;
  top:  -1%;
  left: 0.5%;
  z-index: 1;
  mix-blend-mode: difference;
  font-size: 1em;
}

.left{
  float: left;
  width: 30%;
}
.right{
  float: right;
  padding-right: 0%;
  width: 50%;
}

/* MAIN */

body{
  width: 100%;
  margin: 0 auto;
}

main{
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

section{
  position: relative;
}


video{
  width: 100%;
  height: auto;
  position: relative;
  z-index:0;
}

img{
  width: 100%
}

.landscape{
  width: 100%;
  margin-top: -0.8%;
}

/* COLUMN */

.container {
  display: grid;
  width: 100%;
  margin: 0 auto;
  /*font-size: 1.4em;*/
  grid-template-columns: 1fr 1fr 1fr; /* fraction*/
  position:relative;
  z-index:0;
  height: auto;
  margin-top: -12px;
}

.columntwo {
  display: grid;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr; /* fraction*/
  position:relative;
  z-index:0;
  height: auto;
}

.horizontalsquare{
  height: auto;
  background-color: white;
}

.horizontalsquare video{
    width: 60%;
    padding-left: 17%;
    margin: 0 auto;
    position: none;
  }

/* TEXT */

a{
  color: white;
}

p{
    z-index:1;
    color: white;
    line-height: 0.8em;
    font-size: 0.8em;
  }

  .overlaytext {
  z-index: 1; 
  position: absolute; 
  width: 500px; 
  height: 50px; 
  bottom: 0px; 
  left: 10px; 
}

/* MOBILE */

@media only screen and (max-width: 920px) {

header{
  font-size: 0.6em;
  line-height: 2em;
  padding-top: 1%;
  z-index: 2;
}

header .right{
  width: 50%;
  padding-right: 2%;
}
body{
  padding-top: 25%;
}

  p{
    line-height: 1.2em;
    font-size: 0.3em;
  }

  .text {
  font-size: 0.03em;
    margin-top: 30px;
    }

    .textcontainer{
    font-size: 0.03em;
    margin-bottom: -10px;
    position: relative;

  }
  .overlaytext {
  width: 300px; 
  height: 50px; 
  bottom: -10px; 
  left: 1px; 
}

  .container {
      height: auto;
    }
 .columntwo {
  display: grid;
  width: 100%;
  height: auto;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr; /* fraction*/
  position:relative;
  z-index:0;
  margin-bottom: -0px;
  margin-top: 0px;


  }
