:root {
  --yellow: #ffc600;
  --black: #272727;
}

html {
  /* border-box box model allows us to add padding and border to our elements without increasing their size */
  box-sizing: border-box;
  /* A system font stack so things load nice and quick! */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  /*font-weight: 900;
  font-size: 10px;
  color: var(--black);*/
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.07);
}

*,
*:before,
*:after {
box-sizing: inherit;
}

body {
  /* background-image: url("../img/topography.svg"),
    linear-gradient(110deg, #dbf080, #5464f7);
  background-size: 340px, auto;
  min-height: calc(100vh - 100px);
  margin: 1px; */
  background: rgb(228, 219, 219);
  background-attachment: fixed;
  letter-spacing: -1px;
}


  