@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__row {
  margin: 20px;
}

.header__row-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__row-right {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.add_btn {
  font-size: 20px;
  background-image: linear-gradient(to right, #1fa2ff 0%, #12d8fa 51%, #1fa2ff 100%);
  margin: 10px;
  padding: 15px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  outline: none;
  border: none;
  cursor: pointer;
}

.add_btn span {
  font-weight: 600;
  color: white;
}

.add_btn svg {
  width: 30px;
  height: 30px;
}

.add_btn:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

.row {
  display: flex;
  flex-direction: row;
  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;
}

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

.account {
  text-decoration: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
  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;
}

/* MEDIA QUERIES */
@media (max-width: 1000px) {
  .header__container {
    margin: 0 0 40px 0;
  }
  .header__row {
    margin: 0 10px;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .account {
    max-width: 60px;
  }
  .account img {
    max-width: 40px;
  }
  .account__text {
    max-width: 100%;
    margin: 0;
  }
  .account-login {
    max-width: 100%;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .add_btn {
    margin: 0;
    padding: 5px;
    gap: 0;
    font-size: 15px;
  }
  .add_btn svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 380px) {
  .title {
    font-size: 18px;
  }
}/*# sourceMappingURL=header.css.map */