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

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

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

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #731982 0%, rgba(0, 185, 86, 0.00) 100%);
    mix-blend-mode: hard-light;
    opacity: .3;
    z-index: 1;
  }

  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;
  }
}