.title  {
  text-align: center;
}

.footer {
  color: #fff;
  background-color: #444;
  text-align: center;
  line-height: 80px;
}

/* #region Header with logo */
.header {
  display:flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  padding: 0 20px;
}

.logo__img {
  display:block;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
/* #endregion */

.nav__list {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;

}

.nav__link {
  display: block;
  height: 60px;
  line-height: 60px;
  padding: 0 10px;
  color: #fff;
  text-decoration: none;
  background-color: #444;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}