html {
  scroll-padding-top: 60px;
  scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}


@font-face {
  font-family: 'GmarketSansMedium';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

.gmarket {
  font-family: 'GmarketSansMedium', sans-serif;
  font-weight: 500;
}

.review {
  grid-template-areas:
    'a b'
    'c b';
}

.title {
  grid-area: a;
  align-self: end;
}

.thumb {
  grid-area: b;
  align-self: start;
}

.subtext {
  grid-area: c;
  align-self: start;
}

