
    /* 900 is the in between standard for device screen size, I find it causes trouble setting such a low px number though*/
     /* Responsive columns */
     @media screen and (max-width: 450px) {
/* 900 is a middle size screen size. */
* {
  box-sizing: border-box;
}

.dropdownmenu {
          display: inline-block;
          position: relative;
          top: 25px;
          left: 15px;
          margin-top:10px;
          margin-bottom:20px;
        }
        .dropdownmenu span {
          padding: 15px;
          text-align: center;
          background-color: #016aae;
          color:white;
          text-decoration: none;
        }
        .dropdownlinks {
          display: none;
          position: absolute;
          background-color: lightgrey;
          color: white;
          width: 180px;
          top: 32px; 
          border: thick solid rgb(157, 157, 170);
          text-align: left
        }
        .dropdownlinks a {
          display: block;
          text-decoration: none;
          color: black;
          padding: 8px;
          text-align: left;
        }
        .dropdownmenu
         span:hover, .dropdownlinks a:hover {
            background-color: #016aae;
            color: white;
        }
        .dropdownmenu:hover .dropdownlinks {
          display: block;
        }
      
        .header {
          height: 100%; /* manually calculated header height through setting this to x%*/
          width: 100%;
          text-align: center;
          background-color: teal;
        }
        .footer {
          height: 100%; /* manually calculated header height through setting this to x%*/
          width: 100%;
          text-align: center; 
          background-color: rgb(189, 255, 127);   
        }
      
      .slogan {
      font-style: italic;  
      padding-top: 10px;
      padding-bottom: 10px;
      margin-left: 0px;
      color: yellow;
      /* Total Height = Height + Padding Top + Padding Bottom + Border Width Top + Border Width Bottom*/
      }
        .wrapper {
          text-align: center;
          position: relative;
          width: 100%;
          margin-top:10px;
          margin: 10px auto;
          background-color: grey;
          border: thick solid green;
          font-family: sans-serif;
          font-size: 16px;
          color: limegreen;
          
        }
      
        .navigation {
          background-color: lightblue;
          padding-top: 15px;
          padding-bottom: 15px;
          /* Total Height = Height + Padding Top + Padding Bottom + Border Width Top + Border Width Bottom*/
      
        }
      
       
body {
  font-family: Arial, Helvetica, sans-serif;}
  /* Total Height = Height + Padding Top + Padding Bottom + Border Width Top + Border Width Bottom*/
        h1{
          background-color: rgb(38, 97, 38);
          width: 100%;
          padding: 2px;
          text-align: center;
          box-sizing: border-box;
          margin:0;
          color:blue
        }
      /* Total Height = Height + Padding Top + Padding Bottom + Border Width Top + Border Width Bottom*/
       
        h2{
          background-color: darkblue;
          width: 100%;
          padding: 20px;
          text-align:center;
          box-sizing: border-box;
          margin:0;
          color:black
        }
        
        p {padding-right: 5px;
        color:rgb(33, 33, 33)}


/* Float four columns side by side */
.column {
  float: left;
  width: 33%;
  padding: 0 10px;
}

/* Remove extra left and right margins, due to padding */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

div {
      background-color: rgb(11, 119, 138); 
      color:black;
      padding: 5px;
    }
     @media screen and (max-width: 900px) {
        div {
          background-color: darkblue; 
          color:white;
          padding: 5px;
        }}
        @media screen and (max-width: 450px) {
          div {
            background-color: rgb(31, 85, 155); 
            color:white;
            padding: 5px;
          }}
             
      @media screen and (max-width: 600px) {
        div {
          background-color: rgb(155, 101, 31); 
          color:rgb(34, 24, 24);
          padding: 5px;
        }}
/* Responsive columns
@media screen and (max-width: 900px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
} */

/* Style the counter cards */
.card {
        box-shadow: 8px 4px 8px 0 rgba(0, 0, 0, 0.2);
        padding: 12px;
        text-align: center;
        background-color: #866767;
        border: solid rgb(157, 157, 170);
        border-radius: 10px;
        border-width: 5px;
}