* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-image: url('../image/bg-hockey-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100dvh;

  header,
  footer,
  main {
    position: relative;
    z-index: 2;
  }
}

.container {
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;

  @media (max-height: $h-media-x) {
    padding: 0 18px;
  }
}
