@font-face {
    font-family: 'Schoolbell';
    src: url('./font/Schoolbell-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  /* Global style */
  * {
    font-family: 'Schoolbell', cursive, sans-serif;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #fafafa;
    margin: 0;
  }
  
  /* Main container: occupy ~50% of viewport */
  .card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50vw;
    height: 50vh;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    gap: 2rem;
  }
  
  /* Left side — text */
  .card .text {
    flex: 1;
    text-align: center;
  }
  
  .card h1 {
    font-size: 2.8rem;
    margin: 0 0 1rem;
  }
  
  .card .count {
    font-size: 8rem;
    font-weight: 700;
    color: #ef4444;
    margin: 0.5rem 0;
  }
  
  .card button {
    margin-top: 1rem;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 0.6rem;
    background: #ef4444;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
  }
  
  .card button:hover {
    background: #dc2626;
    transform: scale(1.03);
  }
  
  /* Right side — image */
  .card .banner {
    flex: 1;
    max-width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.8rem;
  }
  