/* 1. FONT SETUP */
@font-face {
  font-family: 'KawaiiFont';
  src: url('assets/fonts/KawaiiStitch-pnz1.ttf');
}

/* 2. ANIMATIONS */
@keyframes y2kWobble {
  0% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg) scale(1.02); }
  100% { transform: rotate(-1deg); }
}

/* 3. MAIN PAGE LAYOUT */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  /* Background Settings */
  background-image: url('assets/bg/static-bg-1.jpg');
  background-repeat: repeat;
  background-size: 500px;
  background-attachment: fixed;
}

/* 4. SHOP NAME STYLE */
.shop-name {
  font-family: 'KawaiiFont', sans-serif;
  color: #c93ab1;
  font-size: 4rem;
  text-align: center;
  margin-top: 50px;
  letter-spacing: 2px;
  animation: y2kWobble 3s ease-in-out infinite;
}

.wip-page {
  color: #c93ab1;
}