* {
    padding: 0;
    margin: 0%;
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif;
  }

  body{
    background-color: #328ab0
  }

  header{
    display:inline-flex;
    width: 100%;
    transition: box-shadow 2s;
    background-color: #328ab0;
    text-align: left;
  }

  header a{
    width: 25%;
    height: 80%;
    margin: auto;
    overflow: hidden;
    cursor: default;
    text-decoration: none;
    left: 0;
  }

  header h1{
    width: 75%;
  }

  #secondary{
    margin: auto;
    padding: 50px;
  }
  

  .button{
    text-align: center;
    position:sticky;
    font-size: 18px;
    font-weight: bold;
    color: #001f3f;
    padding: 20px;
    margin: 20px;
    color: white;
    border-radius: 15px;
    background: #328ab0;
    box-shadow:  4px 4px 10px #2b7596, -3px -3px 6px #3a9fca;
    transition: box-shadow 0.2s;
    cursor: pointer;
  }

  .button:hover{
    box-shadow:  4px 4px 6px #2b7596, -5px -5px 10px #3a9fca;
  }

  h1{
    margin-top: 80px;
    font-weight: bold;
    font-size: 78px;
    text-decoration: underline;
    text-align: center;
    color: white;
  }

  h2{
    font-size: 32px;
    font-weight:lighter;
    text-align: center;
    color: white;
  }

  @media screen and (max-width: 600px){
    header{
      display: inline;
    }
  }