* {
  margin: 0;
  padding: 0;
  font-family: Arial, serif;
}

.header, .footer {
  background-color: #19253d;
  color: #fff;
}
.header a, .footer a {
  text-decoration: none;
}
.header a:hover, .footer a:hover {
  text-decoration: underline;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
}
.header__element, .header__home {
  display: flex;
  align-items: center;
}
.header__element .bo, .header__home .bo {
  padding-left: 30px;
}
.header__home {
  margin-right: auto;
}
.header img {
  width: 80%;
}
.header a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .header__element {
    display: block;
  }
  .header__home {
    margin: 20px 0px;
  }
}
/* FOOTER */
.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 40px 0px;
}
.footer__title {
  padding-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
}
.footer__link {
  padding-bottom: 10px;
}
.footer__link a {
  color: #fff;
}

@media (max-width: 1000px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__block {
    margin: 40px 0px;
  }
}/*# sourceMappingURL=include.css.map */