/*CSS reset - partially copied from https://www.joshwcomeau.com/css/custom-css-reset/*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* my custom stuff below */
body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
section {
  min-height: 100px;
  height: auto;
}
.centered-container {
  display: flex;
  margin: auto;
  width: 480px; /*adjust this later so it stays this size on mobile but grows on bigger screens*/
  background: #00000022; /*will be deleted later, I just want to visually see what's the mobile screen area here*/
}
.pipes {
  max-width: 99px;
  max-height: 150px;
  width: auto;
  height: auto;
}
.centered-pipes {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow: hidden;
  /*check if there are some rules here that can be deleted*/
}
#sky {
  background: #b5d4f7;
  height: 300px;
}
#grass {
  background: #4a953d;
}
#underground-black {
  background: #282828;
}
#undeground-gray {
  background: #aaaaaa;
}
#trash-separation {
  background: #4660af;
}
footer {
  background: #ea185d;
}