/*Default formatting assumes smartphone display; see responsive media queries at bottom*/
* {
  box-sizing: border-box;
}

body {
  background-color: #E0FFFF;
  color: #191970;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: center;
  padding: 15px;
}

html {
  font-family: "Futura", sans-serif;
}

a {
  color: #191970;
  text-decoration: none;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  padding-top: 1vw;
}

.header {
  background-color: #00cccc;
  color: #191970;
  padding: 15px;
  text-align: center;
  font-size: 3vw;
}

.topnav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 3.5vw;
}

.topnav li {
  text-align: center;
  padding: 3px;
  margin-bottom: 7px;
  background-color: #00cccc;
  color: #191970;
}

.topnav li:hover {
  background-color: #0099cc;
}

.contact {
  background-color: #00cccc;
  color: #191970;
  text-align: center;
  font-size: 12px;
  padding: 3px;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
}

.body {
  font-family: "Minion Pro", serif;
  padding-bottom: 150px;
}

.body a:hover {
  background-color: #0099cc;
}

.caption {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  display: none;
}

/* For mobile displays: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
  .header {text-align: left;}
  .header {font-size: 20px;}
  .topnav {font-size: 3vw;}
  .body {position: absolute;
        left: 25vw;
        top: 25vw;
        text-align: left;}
  .footer {
    display: initial;
    background-color: #00cccc;
    color: #191970;
    text-align: center;
    font-size: 12px;
    padding: 3px;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  .contact {
    background-color: #00cccc;
    color: #191970;
    position: fixed;
    bottom: 0;
    margin-bottom: 50px;
    width: 100%;
    }
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
  .header {text-align: left;}
  .header {font-size: 20px;}
  .topnav ul {font-size: 2vw;}
  .body {position: absolute;
         top: 150px;
         text-align: left;}
  #wormpic {
         max-height: 40vh;
         width: auto;
         position: relative;
         margin-left: 0px;
         }
  .footer {
    display: initial;
    background-color: #00cccc;
    color: #191970;
    text-align: center;
    font-size: 12px;
    padding: 3px;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
  }
  .contact {
    background-color: #00cccc;
    color: #191970;
    position: fixed;
    bottom: 0;
    margin-bottom: 50px;
    width: 100%;
    }
}

@media only screen and (max-height: 600px) {
  /* For desktop: */
  .footer {
    display: none;
  }
  .contact {
    position: fixed;
    margin-bottom: 0;
  }
}
