/* Header BG */
.header {
  background-color: #000626c5;
  position: fixed;
  top: 0;
  width: 100%;
  height: 4rem;
}

/* Align Header Links Right */
.header-right {
  float: right;
  display: flex;
  align-items: center;
  padding-right: 2rem;
  gap: 1rem;
}

/* Header Links */
.header-right a {
  display: flex;
  float: left;
  color: white;
  text-align: center;
  width: 7rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

/* Header Links - Hover*/
.header-right a:hover{
  background-color: #4761b7;
  text-decoration: underline;
}

/* Header Links - Contact Button */
.header-right a.contactButton{
  color: #F4F8FF;
  font-weight: bold;
  background-color: #374F9F;
  height: 2rem;
  aspect-ratio: 10/4;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: background-color 0.2s ease-in-out;
  padding: 0.5rem;
}

/* Header Links - Contact Button - Hover*/
.header-right a.contactButton:hover{
  background-color: #203782;
}

/* Logo Header */
.header .logo {
  aspect-ratio: 43/25;
  width: 7rem;
  height: auto;
  padding-left: 2rem;
}

/* Hide Menu Button for Phone Sizing */
.header .menu-button {
  display: none;
}

/* Responsive Navbar */
@media screen and (max-width: 1000px) {
  /* Show Menu Button for Phone Sizing */
  .header .menu-button {
    display: block;
    content: "\2630";
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding-top: 0.5rem;
    float: right;
    padding-right: 2rem;
  }

  /* Hide Header Tabs on Phone Sizing */
  .header-right {
    display: none
  }

  /* Show Header Tabs in Menu on Phone Sizing */
  .header-right.responsive{
    float: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 0;
    padding-bottom: 1rem;
    background-color: #000626c5;
  }
}