/* Parent ================================================================================ */
.parent {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Blurred background behind the background. Equivalent to a suedo element */
.parent-before {
  content: '';
  position: absolute;
  inset: 0;
  filter: blur(25px);
  transform: scale(1.1);
}
