/* 어그로체 웹폰트 직접 추가 */
@font-face {
  font-family: 'Aggro';
  font-weight: 400;
  src: url('https://cdn.jsdelivr.net/gh/webfontworld/aggro/Aggro-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Aggro';
  font-weight: 700;
  src: url('https://cdn.jsdelivr.net/gh/webfontworld/aggro/Aggro-Bold.woff2') format('woff2');
}

/* 기본 초기화 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Aggro', 'Noto Sans KR', sans-serif;
}

.container {
  background: #4E47FF;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.content {
  text-align: center;
  color: white;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.store-link {
  display: inline-block;
}

.store-img {
  width: 160px;
  height: auto;
}

@media (max-width: 480px) {
  .title {
    font-size: 2.2rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .store-img {
    width: 130px;
  }
}
