
  @font-face {
    font-family: 'Montserrat';
    src: url(/fonts/montserrat/Montserrat-Regular.ttf) format('truetype');
    font-style: normal;
    font-weight: normal;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url(/fonts/montserrat/Montserrat-Medium.ttf) format('truetype');
    font-style: normal;
    font-weight: 500;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url(/fonts/montserrat/Montserrat-SemiBold.ttf) format('truetype');
    font-style: normal;
    font-weight: 600;
  }
  @font-face {
    font-family: 'Montserrat';
    src: url(/fonts/montserrat/Montserrat-Bold.ttf) format('truetype');
    font-style: normal;
    font-weight: bold;
  }

  html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
  }

  body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  svg#logo-01 {
    height: 30ex;
    display: block;
    margin: 2ex auto 0 auto;
    max-width: 90%;
  }

  div#top-border {
     padding: 2ex 0;
     background-color:#0c0349;
  }

  div#top-border-menu {
    text-align: center;
    padding: 0;
  }

  div#hamburger-container {
    position: absolute;
    right: 30px;
    top: 10px;
    width: 30px;
  display: flex;
  align-items: center;    /* Centers vertically */
  justify-content: center; /* Centers horizontally */
  height: 30px; /* Or any fixed/defined height */
}

  div#hamburger-icon {
    opacity: 0;
    display: block;
    color: #ff2f92;
    font-family: "Montserrat";
    font-size: 650%;
    margin:0;
    padding:0;
    transition: opacity 1s ease, font-size 1s ease;
  }

  div#top-border-menu-contents {
    display: inline-block;
    border: 1px solid;
  }

  span.top-menu-item {
    color: #ff2f92;
    font-family: "Montserrat";
    font-size: 150%;
    font-weight: 500;
  }

  span.top-menu-item + span.top-menu-item {
    margin-left: 3em;
  }

  span.top-menu-item a:visited {
    color: #ff2f92;
  }

  h2 {
    margin-top: 6ex;
  }

  button {
          font-size: 110%;
  }

  @media only screen and (max-width: 57em) {
    div#top-border-menu-contents {
      text-indent: 0;
      display: grid;
      grid-auto-flow: row;
      visibility: hidden;
      opacity: 0;
      height: 0ex;
    transition: height 1s ease, opacity 1s ease 1s;
    }

    div#top-border-menu-contents.opened {
      display: grid;
      grid-auto-flow: row;
      visibility: visible;
       grid-auto-columns: 1fr;
      opacity: 1;
      height: 20ex;
    }

  span.top-menu-item {
    display: block;
      text-align: center;

  }

  span.top-menu-item + span.top-menu-item {
    margin-left: unset;
  }


    div#hamburger-icon {
      opacity: 1;
      font-size: 200%;
      right: 100px;
    }

  }


