/* Add a black background color to the top navigation */
.topnav {
  background-color: #B73225;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav .active {
  background-color: #556B2F;
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}


body, html {
    height: 100%;
    margin: 0;
    font: 400 15px/1.8 "Roboto", sans-serif;
    color: #000;
  }
  
  .bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4 {
    position: relative;
    background-color: #000000;
    opacity: 0.85;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  
  }
  .bgimg-1 {
    background-image: url("images/img_wisco.jpg");
    min-height: 100%;
  }
  
  .bgimg-2 {
    background-image: url("images/img_wisco2.jpg");
    min-height: 400px;
  }
  
  .bgimg-3 {
    background-image: url("images/img_wisco3.jpg");
    min-height: 400px;
  }

  .bgimg-4 {
    background-image: url("images/img_wisco4.jpg");
    min-height: 400px;
  }
  
  .caption {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #DCE1E3;
  }
  
  .caption .border {
    background-color:transparent;
    color: #DCE1E3;
    text-shadow: 2px 5px 5px #000000;
    padding: 18px;
    font-size: 25px;
    letter-spacing: 10px;
  }
  
  h3 {
    letter-spacing: 5px;
    text-transform: uppercase;
    font: 20px "Roboto", sans-serif;
    color: #DCE1E3;
  }

  .message1 {
    color:#ddd;
    background-color:#004E7C;
    text-align:center;
    padding:50px 80px;
  }

  .message2 {
    color:#ddd;
    background-color:#591C0B;
    text-align:center;
    padding:50px 80px;
  }

  .message3 {
    color:#ddd;
    background-color:#000;
    opacity: 0.95;
    text-align:center;
    padding:50px 80px;
  }

    li {
        text-align: left;
    }
    
    h4 {
        text-align: left;
    }
  
    a:link {
        color: white;
        text-decoration: none;
    }
    
    a:visited {
        color: orange;
    }
    
    a:hover {
        text-decoration: underline;
    }
    
    a:active {
        color: darkolivegreen;
    }
  
  /* Turn off parallax scrolling for tablets and phones */
  @media only screen and (max-width: 1024px) {
    .bgimg-1, .bgimg-2, .bgimg-3 {
      background-attachment: scroll;
    }
  }