.header {
  display: flex;
  flex-wrap: wrap;

  padding-top: max(12px, calc(12vh/16));
  padding-bottom: max(12px, calc(12vh/16));

  gap: max(12px, calc(12vh/16));

  background-color: rgba(5, 7, 11, 0.98);
  border-bottom: 3px solid #FFD700;
  box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);

  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.header-margin {
  margin-bottom: min(12px, calc(12 * 0.1667vh));
}

.icons-section {
  display: flex;

  flex: 1 1;
  width: 100%;

  padding-left: min(12px, calc(12 * 0.1667vh));
  padding-right: min(12px, calc(12 * 0.1667vh));

  gap: min(12px, calc(12 * 0.1667vh));

  flex-direction: row;
  align-items: center;
}

.links-section {
  display: flex;

  flex: 1 1;
  width: 100%;

  padding-left: min(12px, calc(12 * 0.1667vh));
  padding-right: min(12px, calc(12 * 0.1667vh));

  gap: min(12px, calc(12 * 0.1667vh));

  flex-direction: row;
  align-items: center;
  justify-content: end;
}