@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Raleway, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding-block: 2rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../bg.jpg");
  background-color: #cdcdcd;
  background-blend-mode: multiply;
  background-size: cover;
  color: #232323;
}

ol {
  list-style-type: none;
  counter-reset: list-count;
  width: 90%;
  max-width: 1600px;
  margin: auto auto;
  font-size: 1.6rem;
  line-height: 1em;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  border-radius: 0.5em;
  overflow: hidden;
  -webkit-box-shadow: 0.5rem 0.5rem 4rem #efefef, inset 0.1rem 0.1rem 0.5rem #efefef;
          box-shadow: 0.5rem 0.5rem 4rem #efefef, inset 0.1rem 0.1rem 0.5rem #efefef;
}

@media screen and (min-width: 700px) {
  ol {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 900px) {
  ol {
    -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
  }
}

ol li {
  counter-increment: list-count;
  padding: 1em;
  background: rgba(239, 239, 239, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: rgba(205, 205, 205, 0.8);
  width: 100%;
  position: relative;
}

ol li::before {
  content: counter(list-count);
  color: rgba(239, 239, 239, 0.9);
  font-size: 3em;
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  line-height: 1em;
  z-index: -1;
}

ol li:nth-of-type(even) {
  background-color: rgba(102, 26, 26, 0.8);
  color: #efefef;
}
/*# sourceMappingURL=style.css.map */