@import url("https://fonts.googleapis.com/css2?family=SF+Compact:wght@400;600&display=swap");

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  justify-content: center;
  align-items: center;
  height: 100vh;
}

body {
  font-family: "SF Compact", sans-serif;
}

.title {
  position: absolute;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-top: 1rem;
  text-align: left;
  animation: titleAnimation 1s ease-in-out 0s 1 normal forwards;
  animation-delay: 0.3s;
  white-space: nowrap;
}

@keyframes titleAnimation {
  from {
    transform: translateX(-100%);
    clip-path: inset(0 0 0 100%);
  }
  to {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}