.no-scroll {
  overflow-y: hidden;
}

.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.text-welcome {
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: var(--color-secondary);
  opacity: 0;
  animation: fadeZoom 1s ease forwards;
}

.logo-intro {
  width: 30rem;
  height: auto;
  opacity: 0;
  animation: comeUp 1s ease forwards;
}

.tv-close {
  animation: tv-off 500ms forwards;
}

@keyframes tv-off {
  0% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes fadeZoom {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes comeUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
