@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900');
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
}


#myVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  width: 100%; 
  max-height: 100vh;
}

.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
  display: none;
  text-align: center;
}
    
.tekst {
  font-family: 'Lato', Calibri, Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  margin-top: 20px;
}

#myBtn {
  width: 150px;
  font-family: 'Lato', Calibri, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  border: none;
  background: #2e9aa1;
  border-radius: 20px;
  padding: 10px 0 10px 0;
  color: #fff;
  cursor: pointer;
  margin-bottom: 20px;
  margin-top: 10px;
}

#myBtn:hover {
  background: #d6eceb;
  color: #2e9aa1;
}