* {
  box-sizing: border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body {
  margin: 15px;
  background-color:#F4FFE4;
}

/* Style the header */
.header {
  margin-left:-15px; margin-right:-15px;
  color: #C09A3C; 
  background-color: #D5EDB3;
  text-align: center;
  font-weight:bold;
  height:142px;
  border-style:solid;
  border-width:2px;
  border-color:#5C743D
}

/* Create columns that float next to each other 
   Total width 1350px works well*/
.column {
  float: left;
  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:800px) {
  .column {
    width: 100%;
  }
}


/* Dropdown menus */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color:#5C743D;
}

li {
  float: left;
}

li a, .dropbtn {
  display: inline-block;
  background-color:#5C743D;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  border-style:none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd;
  color: black;

}

li.dropdown {
  display: inline-block;
  
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #5c743d;  /*#f9f9f9;*/
  min-width: 160px;
  /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
  z-index: 1;
}

.dropdown-content a {
  color: #f2f2f2;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1;}

.dropdown:hover .dropdown-content {
  display: block;
}

.button {
  border: none;
  color: white;
  padding: 8px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.5vw;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

/* Donate button: */
.button1 {
  background-color: red;
  color: white;
  font-weight: bold;
  border-radius: 40%;
  /* border: 2px solid #04AA6D; */
}

.button1:hover {
  background-color: #f1f1f1;  /*#04AA6D; */
  color: black;
}