.entrance {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 100;
  clip-path: circle(70.7% at 50% 50%);
}

@keyframes slide-top {
  0% {
    clip-path: circle(70.7% at 50% 50%);
  }
  100% {
    clip-path: circle(0% at 50% 50%);
  }
}

.slide-top {
  animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.5s;
}
