@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Yanone+Kaffeesatz:wght@600&display=swap");
/* HEADER */
.header__container {
  margin: 0 20px 20px 20px;
  padding: 20px 0 0 0;
}
.header__row-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__row-center {
  margin: 20px 100px 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.title {
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Fjalla One", sans-serif;
  font-size: 16px;
}

.logo-img {
  max-width: 160px;
}

.header-row__center-text {
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 30px;
  font-weight: 600;
}

.arrow-img {
  max-width: 30px;
}

.account {
  text-decoration: none;
  height: 100px;
  width: 100px;
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.account__logo img {
  max-width: 60px;
}
.account__text {
  margin: 15px 0 0 0;
  font-size: 20px;
  font-family: "Yanone Kaffeesatz", sans-serif;
}

.account-img {
  max-width: 60px;
}

.account-logout {
  display: none;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  .header__container {
    margin: 0 0 40px 0;
  }
  .header__row {
    margin: 0 10px;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header__row-center {
    width: 100%;
  }
  .header__row-center {
    margin: 40px 0 0 0;
  }
  .account {
    position: absolute;
    top: 15px;
    right: 30px;
  }
}
@media (max-width: 700px) {
  .header__row-center {
    width: 100%;
  }
  .account {
    position: absolute;
    top: 15px;
    right: 5px;
  }
  .header__row {
    margin: 0 10px;
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 380px) {
  .title {
    font-size: 18px;
  }
}