html {
  font-size: 10px;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Evolventa", sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
}

.container {
  max-width: 1260px;
  padding: 0 16px;
  margin: 0 auto;

  box-sizing: border-box;
}


button.pink_button {
  color: #fff;
  background: #f7598d;
  display: flex;

  height: 55px;
  border: none;
  align-items: center;
  justify-content: center;
  border-radius: 8px;

  font-size: 20px;
  font-weight: 700;

  &:active {
      transform: translate(2px, 2px);
  }
}