/* header.css */
.header {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 77px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 6px -2px #ccc;
  backdrop-filter: blur(60px);
  z-index: 1;
}

.header-container {
  display: flex;
  margin-top: 5%;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  height: 32px;
  width: 32px;
  margin-left: 48%;
}

.btn-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-right: 2%;
}

.header.active {
  display: block;
}

@media screen and (min-width: 992px) {
  .header-container {
    margin-top: 1%;
  }
}
