@charset "utf-8";
/* CSS Document */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
      background: #ffffff;
      color: #1d1d1f;
      -webkit-font-smoothing: antialiased;
    }

    .hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
    }

    p {
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
      font-weight: 400;
      color: #393939;
      max-width: 600px;
      line-height: 1.4;
      opacity: 0;
      transform: translateY(10px);
      animation: fadeIn 0.8s ease forwards;
      animation-delay: 0.2s;
    }
	
	  .btmp {
		  margin: 2rem 0 2rem 0;
	  }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }