* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: aqua;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #597ae6;
  border: 1px solid black;
  font-family: Arial, sans-serif;
}

.navigation__link {
  color: #193aa6;
  font-size: 25px;
  text-decoration: none;
}

.navigation__title {
  color: white;
  margin: 0px;
  font-size: 25px;
}

.Produkt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #597ae6;
  border: 1px solid black;
  font-family: Arial, sans-serif;
  margin: 10px;
  width: 100%px;
}

.Produkt__item {
  width: 40px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  vertical-align: middle;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: lightblue;
  border: 1px solid black;
  color: white;
}

.Produkt__item--special {
  background-color: blue;
}
/*# sourceMappingURL=uppgift9.css.map */