What does this scss code mean? I mean what's the meaning of space here?
SCSS
.animated-title > div div {
  font-size: 12vmin;
  padding: 2vmin 0;
  position: absolute;
}
this is its html code
<div class="animated-title">
  <div class="text-top">
    <div>
      <span>mimicking</span>
      <span>apple's design</span>
    </div>
  </div>
  <div class="text-bottom">
    <div>for the win!</div>
  </div>
</div>