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

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

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


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

  footer {
    position: relative;
    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgb(0 0 0 / 38%) 0%, rgba(115, 25, 130, 0.75) 100%);
      mix-blend-mode: hard-light;
      opacity: 1;
      z-index: 1;
    }
    div {
      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;
  }
}