@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.netflix{
  width: 150px;
  height: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.netflix span{
  width: 50px;
  height: 0;
  background: #db0001;
  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 #000;
  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%;
  }
}