html {
  overflow-y: scroll;
  overflow-x: hidden;
  /* background-color: #ffffff; */
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #F8F8F8;
  overflow-wrap: break-word;
  overscroll-behavior-y: none;
}

main {
  flex: 1;
}

a, h1, h2, button {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

.icon-arrow {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: currentColor;
  -webkit-mask-image: url("../images/arrow-icon.svg");
  mask-image: url("../images/arrow-icon.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.icon-star {
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background-color: currentColor;
  -webkit-mask-image: url("../images/star-icon.svg");
  mask-image: url("../images/star-icon.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

@media (max-width: 900px) {
  .icon-star {
    width: 24px;
    height: 24px;
    margin-right: 16px;
  }

  .icon-arrow {
    width: 24px;
    height: 24px;
  }
}