@import url(/static/css/reset.css);
@font-face {
  font-family: "Montserrat";
  src: url(/static/fonts/Montserrat-VariableFont_wght.ttf) format("truetype");
  font-style: normal;
}
body {
  font-family: "Montserrat";
  display: flex;
  background: #FCFCFC;
  flex-direction: column;
  padding: 18px;
  min-height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
}

header .header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .menu-navbar {
  position: fixed;
  background: #fff;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  display: none;
  transition: 0.5s all;
}
header .menu-navbar .icon {
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}
header .menu-navbar ul {
  display: grid;
  gap: 20px;
  place-items: center;
  height: 50vh;
}
header .menu-navbar ul li {
  background: linear-gradient(135deg, #ff9a8b 0%, #ff95d5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
}
main h1 {
  font-size: 20px;
  font-weight: 700;
  color: #282828;
  margin-top: 20px;
}

footer {
  width: calc(100% + 36px);
  margin: -18px;
  background: linear-gradient(135deg, #ff9a8b 0%, #ff95d5 100%);
  margin-top: 50px;
}
footer .footer-wrap {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
  font-weight: 500;
}/*# sourceMappingURL=rules.css.map */