header {
  background: var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header section {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

header .header {
  background: var(--tertiary-color);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 16px 256px;
}

header .header .headerSocials {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

header .header div a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 8px;
}

header .header div a svg {
  width: 48px;
  height: 48px;
}

header .header div a div {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: white;
}

header .header div a div .headerLinkUp {
  color: var(--white);
  font-weight: 700;
}

header .header div a div .headerLinkDown {
  color: var(--primary-color);
  font-weight: 700;
}

header .header div a:hover {
  transform: scale(1.05);
}

/* Media Queries for 1300px - 1024px - 768px - 425px */
@media (max-width: 1300px) {
  header .header {
    padding: 16px 128px;
  }
}

@media (max-width: 1024px) {
  header .header {
    padding: 16px 64px;
    flex-direction: column;
  }

  header .header .headerSocials {
    width: 100%;
    justify-content: space-around;
    margin-top: 16px;
  }
}

@media (max-width: 768px) {
  header .header {
    padding: 16px 32px;
    flex-direction: column;
  }

  header .header .headerSocials {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    gap: 8px 32px;
  }

  header .header div a svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 425px) {
  header .header .logo {
    height: 44px;
  }

  header .header .logo img {
    height: 44px;
  }

  header .header {
    padding: 16px 32px;
    flex-direction: column;
    gap: 16px;
  }

  header .header .headerSocials {
    width: 100%;
    justify-content: space-around;
    gap: 8px 16px;
  }

  header .header div a div {
    display: none;
  }
}