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

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

  position: relative;

  &:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(51, 51, 51, 0.00) 0%, #333 100%);
  }
}

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


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