/* CSS Document */


/* Trial fonts:
font-family: 'Neue Haas Grotesk Std Text 55 Roman'
font-family: 'Neue Haas Grotesk Std Text 65 Medium'
font-family: 'Neue Haas Grotesk Std Text 75 Bold'
font-family: 'Neue Haas Grotesk Std Display 35 ExtraLight'
*/

body {
  font-family: 'Neue Haas Grotesk Std Text 65 Medium', 'Open Sans', Helvetica, Arial, sans-serif;
}
p {
  padding: 6pt;
}
#cc {
  max-height: 700px;
  max-width: 610px;
}
.bold {
  font-family: 'Neue Haas Grotesk Std Text 75 Bold', 'Open Sans Bold', Helvetica, Arial, sans-serif;
}
.alert {
  font-weight: bold;
  color: red;
}
.banner {
  font-size: 96pt;
  font-family: "Neue Haas Grotesk Std Text 65 Medium", 'Open Sans', Helvetica, Arial, sans-serif;
  text-align: center;
}
.center {
  text-align: center;
}
.hidden {
  display: none;
}

/* Nav bar styles */

nav {
  width: 100%;
  background-color: #2222cd;
}
.active {
  background-color: #4CAF50;
}

/* Remove margins and padding from the list, and add a background color */

ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #2222cd;
}

/* Float the list items side by side */

ul.topnav li {
  float: left;
}

/* Style the links inside the list items */

ul.topnav li a {
  display: inline-block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of links on hover */

ul.topnav li a:hover {
  background-color: #115;
}

/* Hide the list item that contains the link that should open and close the topnav on small screens */

ul.topnav li.icon {
  display: none;
}

/* End of navbar styles */


/* Styling for the images used in galleries */

figure {
  max-height: 600px;
  max-width: 600px;
  alignment-adjust: middle;
  text-align: center;
}
figcaption {
  padding: 0px;
  margin: 0px;
}
img {
  display: inline-block;
}

/* End of gallery styling */


/* Footer positioning */

footer {
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  text-align: center;
}
#slideshow1,
#slideshow2,
#slideshow3,
#slideshow4 {
  min-height: 560px;
  max-height: 600px;
  min-width: 400px;
  max-width: 600px;
}

}
#slideshow1 img {
  display: block;
  max-height: 460px;
  width: auto;
  height: auto;
}
#slideshow2 img {
  display: block;
  max-height: 480px;
  width: auto;
  height: auto;
}
#slideshow3 img {
  display: block;
  max-height: 480px;
  width: auto;
  height: auto;
}

/* Blog-related css */
.blog img {
  max-width: 400px;
  display: inline-block;
  text-align: center;
}
.blog aside {
  float: right;
}
.blog div {}
#blogContent {
  border: medium solid #309;
  padding: 6px;
}
article.blog {
  background-color: #F0F0F0;
  margin: 6px;
}

/* Handle different sized screens */

/* When the screen is less than 680 pixels wide, hide all list items, except for the first one ("Home"). Show the list item that contains the link to open and close the topnav (li.icon) */
@media screen and (max-width:480px) {
  ul.topnav li:not(: first-child) {
    display: none;
  }
  ul.topnav li.icon {
    float: right;
    display: inline-block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens */
@media screen and (max-width:480px) {
  ul.topnav.responsive {
    position: relative;
  }
  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.topnav.responsive li {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }
}
