* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #006600;
  color : #ffcc66;
  padding: 15px;
}

h1 {
  font-size:4vw;
  font-style: italic; 
  font-weight: normal;
  line-height: 0.1;
}

h2 {
  font-size:2vw;
  font-weight: normal;
/*   font-style: italic;  */
}

.FixedTop {
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the bottom of the page */
  width: 100%; /* Full width */

  padding: 0% 2.5% 0% 0%;

}

/* Main content */
.mset {
  margin-top: 15%;      /* Add a top margin to avoid content overlay */
} 

.defaultlink2{
  text-decoration: none;
  display: inline-block;
  border: 0px solid black;
 /* background-color: white; */
  border-color: #000066;
  color: yellow;
  padding: 1px 2px;
  font-size: 14px;
  cursor: pointer;
}

/* Style the header */
.header {
  background-color: #006600;
  padding: 1px;
  text-align: left;
}

.summarydate {
  font-size:3vw;
}


/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 15px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width:600px) {
  .column {
    width: 100%;
    margin-top: 5%;      /* Add a top margin to avoid content overlay */

  }
.summarydate {
  font-size:2vw;
}


}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #ffcc66;
  line-height: 0.4;
}

li {
  float: left;  border-right: 1px solid #bbb;
}

li:last-child {
  border-right: none;
  border-left: 1px solid #bbb;
}

li a, .dropbtn {
  display: inline-block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: #00994d;
}

li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;



}
