/* Body */

body {
  background-color: white;
  color: black;
  font-family: 'Helvetica', sans-serif;
  margin: 0px;
  height: 100%;
  padding: 0;
  font-size: 10vw;
}

a { /* link formatting */
  color: inherit; /* keep color the same as everything else*/
  text-decoration: none; /* no underline */
  padding: 20px;
}

/* Borders and color blocks */

.link-button-corners {
  border-radius: 30px;
  background: #53784F;
  padding: 20px;
  width: 200px;
  height: 4vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.textleft {
 border-width:3px;
 border-style:solid;
 border-color:#53784F;
 padding-left: 2.5vw;
 padding-right: 2.5vw;
  padding-top: 1vw;
 padding-bottom: 1vw;
 margin-left: 13.8vw;
 margin-right: 5vw;
 background-color: #53784F;
}

/* Images */

.container { /* Create space between images on the same line */
  display:flex;
  align-items: center; 
  padding-left: 5px;
  padding-right: 5px;
}

.images-wrap-consistent { /* Structure of each line of images */
  display: flex; 
  align-items: center; 
  padding-left: 10px;
  justify-content:center;
  flex-direction:row;
}

.xl-image { /* Image formatting */
  height: 40vw;
  width: auto;
  display: block;
  transition: .5s ease;
  backface-visibility: hidden;
}

/* Header/footer */

footer {
  text-align: center;
  padding: 5px;
  background-color: #53784F;
  color: white;
}

.header {
  padding: 10px;
  text-align: center;
  color: white;
  font-size: 0.5vw;
  background-image: linear-gradient(#31472E, #53784F);
}

ul.title-content-list > li { /* stuff for making links at top nice*/
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 6vw; 
}

ul.title-content-list > li > .title { /* homepage link formatting*/
  font-size: 2vw;
}

ul.title-content-list > li > .content { /* other link formatting*/
  font-size: 1.5vw;
}

/* Hamburger Navbar */
  .topnav {
    background-color: #53784F;
    overflow: hidden;
    position: fixed;   /* stays at top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;     /* make sure it’s above images */
  }

  /* Desktop logo / title link */
  .topnav a.active {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 14px 16px;
    display: block;
  }

  /* Links inside mobile menu */
  #myLinks a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: white;
    background: #53784F;
    text-align: right;
  }

  /* Links hover effect */
  #myLinks a:hover {
    background-color: #53784F;
  }

  /* Hamburger icon (top right) */
  .topnav .icon {
    position: absolute;
    right: 0;
    top: 0;
    padding: 14px 16px;
    color: white;
    cursor: pointer;
  }

.mobile-break { 
     display: none;
  }

/* Desktop-specific */
@media only screen and (min-width: 1000px) {
  .ignore-on-desktop
  {
    display: none;
  }
}

/* Mobile-specific */

@media only screen and (max-width: 1000px) {

    .ignore-on-mobile
    {
    display: none;
    }
    
    /* Text */

    p {
      font-size: 16pt;
    }

  /* Info on hover */

  .text { /* Font size for titles of pictures */
    background-color: #53784F;
    color: white;
    font-size: 45px;
    padding: 16px 32px;
  }

  /* Altering breaks for mobile display */

    .mobile-break { 
      display: block;
    margin: 30px 0;
    }

      .mobile-remove-break { 
      display: none;
    }

  /* Hamburder menu on mobile*/

  /* Style navigation menu links */
  .topnav a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 45pt;
    display: block;
    background: #53784F;
  }

} /*End of mobile formatting */