@charset "UTF-8";

header {
  width: 100%;
}

.header-content {
  padding-top: 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

i {
  color: #29BBB8;
}

.header-icons {
  display: flex;
  gap: 14px;
}

.header-icons a:hover i {
  animation: translationY 0.8s infinite alternate;
  color: #218E8C;
}

@keyframes translationY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}

.header-button {
  border: 1px solid #29BBB8;
  padding: 8px 24px;
  border-radius: 4px;
  color: #29BBB8;
  background-color: transparent;
  transition: background-color 0.8s;
}

.header-button:hover {
  color: white;
  border: 1px solid #29BBB8;
  background-color: #29BBB8;
}

.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}



@media screen and (max-width: 768px) {
  .header-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-logo {
    position: static;
    transform: none;
    margin-top: 14px;
  }

  .header-logo img {
    width: 160px;
    margin-top: 0;
  }

  .header-content i {
    margin-top: 16px;
    font-size: 34px;
  }

  .header-button {
    display: none;
  }
}
