@charset "utf-8";

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
}

.tracking-in-expand {
    font-size: 3rem;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.tracking-in-expand:hover {
    opacity: 0.7;
}

@media (max-width: 600px) {
    .tracking-in-expand {
    font-size: 2rem;
    }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.tracking-in-expand {
	animation: tracking-in-expand 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}