@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body{
  background-color: #000;
  color:#fff;
  position: relative;
  font-family: "Poppins", sans-serif;
}
body:before{
  content: "";
  position: fixed;
  bottom:0;
  left:0;
  transform: translate(-20%,50%);
  width: 70vw;
  height: 70vw;
  background: indigo;
  border-radius:100%;
}
body:after{
  content: "";
  position: fixed;
  inset:0;
  background: #0005;
  backdrop-filter: blur(300px);
}
.container{
  padding:15px;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}
.logo img{
  height: calc(10px + 2vw)!important;
}
.container h1{
  margin:1rem auto 0; 
  font-size:calc(12px + 6vw);
}
video{
  position: fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index: 1;
  width:100vw;
  height: 100vh;
  object-fit: cover;
  /* filter:opacity(0.4); */
}