.logo {
    height: 75px;
}

header {
    padding:10px 30px 10px 30px;
    background-image:linear-gradient(to right,#ffffff, #ffffff,#0e1f3f);
}

p.slogan {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25em;
    font-style: italic;
    margin: 0px;
    padding-top: 5px;
}



/* Used topnav with dropdown method from W3schools with tweaking without special external icons */
nav {
    overflow: hidden;
    background-color: #1377ab;
  }
  
  .navbar a {
    float: left;
    display: block;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .active {
    background-color: #0e1f3f;
    color: #fff;
  }
  
  .navbar #menu-btn {
    display: none;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropdown-btn {
    font-size: 17px;    
    border: none;
    outline: none;
    color: #fff;
    padding: 10px 15px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .navbar a:hover, .dropdown:hover .dropdown-btn {
    background-color: #778291;
    color: #fff;
  }
  
  .dropdown-content a:hover {
    background-color: #778291;
    color: #fff;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  /* keeps the icons "+" and "-" monospace with a new font-type selection solely for aesthetic purposes */
  .nav-icon {
    font-family: 'Courier New', Courier, monospace;
    font-style: normal;
  }
  /* hides the icon "-" when the dropdown menu is shrunken */
  #drop-shrink {
    display:none;
    position:relative;
  }
  
  /* when the dropdown is hovered, and the dropdown expands, the "+" is set to none */
  .dropdown:hover #drop-expand {
    display:none;
  }
  
  /* during this dropdown hover visualization, the "-" is displayed, and reverts when unhovered */
  .dropdown:hover #drop-shrink {
    display: inline-block;
  }
  
  @media screen and (max-width: 600px) {
    .navbar a:not(:first-child), .dropdown .dropdown-btn {
      display: none;
    }
    .navbar a#menu-btn {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    .navbar.responsive {position: relative;}
    .navbar.responsive #menu-btn {
      position: absolute;
      right: 0;
      top: 0;
    }
    .navbar.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    .navbar.responsive .dropdown {float: none;}
    .navbar.responsive .dropdown-content {position: relative;}
    .navbar.responsive .dropdown .dropdown-btn {
      display: block;
      width: 100%;
      text-align: left;
    }
  }
  
  /* end of borrowed w3schools css code for topnav, renamed/recoded the function, classes, ids and initial div to a semantic nav. */


section {
    display: flex;
}

article {
    flex: 3;
    padding: 10px 30px 10px 30px;
}

#article-photos {
    display:flex;
    justify-content: center;
}

article img {
    padding: 0px 15px;
    max-width: 360px;
}

form {
    flex: 1;
    padding: 10px 30px 10px 30px;
}

p#form-note {
    font-style:italic;
}

form fieldset {
    width: min-content;
}

footer {
    background-color: #778291;
    padding: 10px;
    text-align: center;
    color: #fff;
}

h1, h2, h3, h4 {
    font-family: Arial, Helvetica, sans-serif;
}

p.content, ul.content, li, p.breadcrumb {
    font-family: Arial, Helvetica, sans-serif;
}

p.breadcrumb {
  font-style: italic;
  color:#778291;
  font-size: 1rem;
}

p.breadcrumb a#active {
  color: #0e1f3f;
}

.breadcrumb a:visited {
  color: inherit;
}

p.footer {
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    font-size: 0.8em;
}

@media (max-width: 600px) {
    section {
      -webkit-flex-direction: column;
      flex-direction: column;
    }
    #article-photos{
        flex-direction:column;
        padding: 5px 0px;
    }
  }