* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: #080808 url('./img/back-pc.png') center center / cover no-repeat
    fixed;
  color: #fff;
  font-family: Arial, 'Noto Sans KR', sans-serif;
  image-rendering: auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px 28px;
}

.content {
  width: min(100%, 880px);
  margin: 0 auto;
}

.title {
  width: min(79%, 1114px);
  margin: 0 auto 14px;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.footer-link {
  display: block;
  line-height: 0;
  width: 100%;
}

@media (max-width: 760px) {
  body {
    background: #080808 url('./img/back-m.png') center top / cover no-repeat
      scroll;
  }

  .page {
    padding: 18px 12px 24px;
  }

  .title {
    width: min(92%, 560px);
    margin-bottom: 12px;
  }

  .banner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 14px;
  }
}
