@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@font-face {
  font-family: "Arkhip";
  src: url(fonts/Arkhip.ttf) format("truetype");
  font-weight: bold;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.showcase{
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #ffffff;
  z-index: 2;
}

.showcase header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
}

.showcase video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #b1dff5;
  mix-blend-mode: overlay;
}

.text{
  position: relative;
  z-index: 10;
}

 .text h2 {
    font-size: 5em;
    font-weight: 600;
    line-height: 1em;
    font-family: 'Arkhip', sans-serif;
  }

  .text p{
    font-size: 1.1em;
    margin: 7px 0;
    font-weight: 400;
  }