/* Last update: 2019-07-15 16:10 */

#progress-bar {
  display: none;
}

/* .wrapper {
  grid-template-columns: repeat(3, 1fr);
} */

/* Smartphones */
@media only screen and (max-width: 500px) {
  body {
    background-color: bisque;
  }
  .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (min-width: 501px) and (max-width: 768px) {
  body {
    background-color: aquamarine;
  }
  .wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Normal */
@media (min-width: 769px) and (max-width: 1200px) {
  body {
    background-color: cornflowerblue;
  }
}

/* @media (max-width: 600px) {
  .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
} */
