* {
  box-sizing: border-box;
}

body {
  display: grid;
  grid-template-columns: 600px;
  grid-template-rows: 80px 120px 120px;
  row-gap: 15px;
  background-color: #b6ceee;
  margin: 0 auto;
  width: 600px;
  margin-top: 30px;
}

.navigation {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #597ae6;
  border: 1px solid black;
  font-family: Arial, sans-serif;
}
.navigation__link {
  color: rgb(191.25, 191.25, 191.25);
  font-size: 20px;
  text-decoration: none;
}
.navigation__title {
  color: #fff;
  margin: 0px;
  font-size: 25px;
}

.product-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #597ae6;
  border: 1px solid black;
}
.product-container__item {
  width: 60px;
  height: 60px;
  border: 1px solid black;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #9196dd;
}
.product-container__item--special {
  border: 2px solid #cacaca;
  background-color: #2c35af;
}
.product-container__letter {
  margin: 10px 0px 0px 0px;
  color: #fff;
  font-size: 30px;
  font-family: "Times New Roman", Times, Serif;
}/*# sourceMappingURL=bluebemSass.css.map */