header {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #777;
  margin-bottom: 10px;
  background-image: linear-gradient(to left, rgb(59, 77, 92), #111);

  position: relative;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__logo {
  margin-left: 20px;
  background-image: url("../public/logo_black_white.png");
  background-size: cover;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transform: rotate(-30deg);
  border: 1px solid lightblue;
}

.header__title {
  font-size: 36px;
  width: 30%;
  font-weight: bold;
  text-decoration: underline;

  position: absolute;
  left: 40%;
}

.header__menu {
  display: none;
  margin-right: 20px;
  position: relative;
}

.header__menu:hover .header__dropdown {
  right: -20px;
}

.header__menu img {
  width: 30px;
  height: 50px;
  object-fit: cover;
}

.header__dropdown {
  height: 400px;
  width: 200px;
  background-color: #777;
  border: 1px solid white;
  position: absolute;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  top: 60px;
  right: -300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  transition: 0.4s all ease;
}

.header__navigation {
  margin-right: 40px;
  background-color: #777;
  padding: 8px;
  border-radius: 20px;
}

.header__navigation > a {
  margin-right: 20px;
}

.header__navigation img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

@media only screen and (max-width: 1300px) {
  .header__title {
    left: 20%;
    font-size: 28px;
  }
}

@media only screen and (max-width: 700px) {
  .header__navigation {
    display: none;
  }

  .header__menu {
    display: flex;
  }

  .header__title {
    left: 30%;
  }

  .header__dropdown img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
}
