* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 60%;
  margin: 0 auto;
  padding: 10px;
  background-color: #b6ceee;
  display: grid;
  grid-row: auto auto auto;
  row-gap: 15px;
}

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

.row {
  padding: 40px;
  background-color: #597ae6;
  border: 2px solid #111;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.row__element {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: rgb(133.3246073298, 157.5130890052, 236.6753926702);
  border: 2px solid #111;
}
.row__element--variation {
  background-color: rgb(25.0654450262, 58.1518324607, 166.4345549738);
  border: 3px solid #c1c1c1;
}
.row__text {
  color: #fff;
  font-size: 40px;
  font-family: "Times New Roman", Times, serif;
}/*# sourceMappingURL=style.css.map */