@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer{
  position: relative ;
  top: 80%;
  left: 0;
  width: 80%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo{
  color: white;
  text-transform: uppercase;
  cursor: pointer;
}
.main{
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}
.main.active{right: 300px;}
.main video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text{
  position: relative;
  z-index: 10;
}
.text h2{
  font-size: clamp(4em, calc(4em + 4vw), 4em);
  color: white;
  text-align: center;
  line-height: 1em;
  opacity: 0.5;
}
.text h3{
  font-size: clamp(1em, calc(1em + 1vw), 2em);
  color: white;
  text-align: center;
  line-height: 1em;
  opacity: 0.5;
}
.text p{
  font-size: 1.1em;
  color: white;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}
.text a{
  display: inline-block;
  font-size: 1em;
  background: white;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}
.text a:hover{letter-spacing: 6px;}

