.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  z-index: 10;

  border-top: 0.5vh solid #ffb8e0;
  border-bottom: 1px solid #ec7fa9;
  background-color:white;
  height: 4vw;
  width: 100%;
}

.logo-container {
  vertical-align: top;
  display: flex;
  text-align: center;
  margin: 0 10.417vw;

  width: 400px;
  font-size: 2.5vw;
}
  .website-logo {
    justify-content: center;
    align-content: center;
    font-weight: 500;

    cursor: pointer;
  }

.header-navbar {
  vertical-align: top;
  display: flex;
  text-align: center;
  margin: 0 10.417vw;

  width: 40.885vw;
  font-size: 1vw;
  font-weight: 300;
  transition: font-size 80ms ease-in;
}

  .header-button {
    flex: 1;
    justify-content: center;
    align-content: center;

    cursor: pointer;
    transition: opacity 200ms;
  }

  .header-button:hover {
    opacity: 0.4;

    transition: opacity 200ms;
  }



@media only screen and (max-width: 1600px) {
  .header-navbar {
    color: red;
    font-size: 1vw;
    transition: font-size 80ms ease-in;
  }
}