@charset "UTF-8";
/* DEFAULT */
@media only screen {
  main {
    background: #0000FF url("../images/background.webp") no-repeat 50% 0%;
    background-size: cover;
  }
  .button {
    background-color: #386AB2;
    margin-bottom: 0;
    padding: 8px 1px;
    width: 300px;
  }
  .icon {
    height: auto;
    max-width: 172px;
    width: 10vw;
  }
  .parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 2px;
    grid-row-gap: 4px;
  }
  .width {
    width: 300px;
  }
  #big {
    display: block;
  }
  #small {
    display: none;
  }
  #dumpster {
    background: url("../images/rolloff-dumpster.webp") no-repeat 50% 50%;
    background-size: cover;
    border-top: 1px solid #FFFFFF;
    height: 38vw;
  }
  #dumpsters {
    background-color: #386AB2;
  }
  #left, #right {
    padding: 1px 2vw;
    width: 45%;
  }
  #left2, #right2 {
    padding: 1px 2vw;
    width: 45%;
  }
  #scooter {
    height: auto;
    max-width: 800px;
    width: 40vw;
  }
  #texas {
    height: auto;
    max-width: 600px;
    width: 30vw;
  }
  #where {
    margin: 40px 0 0 0;
  }
}
/* MEGAPIXEL */
@media only screen and (min-width: 2001px) {}
/* DESKTOP */
@media only screen and (max-width: 2000px) {}
/* MOBILE */
@media only screen and (max-width: 700px) {
  .icon {
    width: 20vw;
  }
  .parent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 6px;
    grid-row-gap: 4px;
  }
  #big {
    display: none;
  }
  #small {
    display: block;
  }
  #left, #right {
    width: 90%;
  }
  #left2, #right2 {
    width: 90%;
  }
  #scooter {
    width: 70vw;
  }
}