* {
  margin: 0;
  padding: 0;
  /* font-family: "Poppins", sans-serif; */
  box-sizing: border-box;
}
body {
  background: #000;
}
h1{
  color: aliceblue;
  text-align: center;
  justify-content: center;
}
.netflix {
  width: 150px;
  height: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}
.netflix span {
  width: 50px;
  height: 0;
  background: linear-gradient(90deg, #002fff, #2bff00);
  position: absolute;
}
.left {
  left: 0;
  bottom: 0;
  animation: anim 1s linear forwards;
animation-delay: 1s ;
}
.center {
  top: 0;
  left: 0;
  transform: skewX(22deg);
  transform-origin: top left;
  box-shadow: 0 0 50px #000000;
  z-index: 2;
  animation: anim 1s linear forwards;
  animation-delay: 2s ;
}
.right{
  right: 0;
  bottom: 0;
  animation: anim 1s linear forwards;
  animation-delay: 3s ;
}
.netflix::after{
  content: '';
  width: 120%;
  height: 20px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: -10%;
  bottom: -10px;
  z-index: 5;
}
@keyframes anim{
  100%{
    height: 100%;
  }
}