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

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

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

  footer {
    position: relative;
    &::before {
      content: '';
      position: absolute;
      top: -52px;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 140%;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.75) 100%);
      mix-blend-mode: hard-light;
      opacity: 1;
      z-index: 1;
    }
    div {
      position: relative;
      z-index: 2;
    }
  }
}

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

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