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

body {
  background: $c-white;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.layout {
  min-height: 100vh;
  position: relative;

  &::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    height: 148px;
    background: url("../images/header-bg2.svg") no-repeat;
    background-position: center;
    @media (min-width: 375px) {
      background-size: cover;
      height: 190px;
    }
  }
}

.container {
  max-width: 360px;
  min-width: 320px;
  padding: 0 11px;
  margin: 0 auto;
}