
* {
  box-sizing: border-box;
}


/* ----------------------- BUTTONS ------------------------------------------- */

.btn-group button {
  background-color: #04AA6D; /* Green background */
  border: 1px solid green; /* Green border */
  color: white; /* White text */
  padding: 10px 24px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  float: right; /* Float the buttons side by side */
}

/* Clear floats (clearfix hack) */
.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

.btn-group button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #3e8e41;
}




/* ----------------------- 3 MAINBOXES TOP, LEFT, RIGHT ------------------------------------------- */

.top {
  background-color: #E8E8E8;
  padding: 1px;
  float: left;
  width: 90%; 
  border-style:solid;
  border-width:1px;
  border-color:blue;
}

.left {
    border-style:solid;
    border-width:1px;
    border-color:red;
    background: #E8E8E8;
  padding: 10px;
  float: left;
  width: 45%; /* The width is 20%, by default */
}


.right {
  background-color: #FFFFFF;
      border-style:solid;
    border-width:1px;
    border-color:blue;
  padding: 10px;
  float: left;
  width: 45%; /* The width is 80%, by default */
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* ----------------------- IMAGES ------------------------------------------- */



img.no-border {
	border: none;
}
img.float-right {
  float: right;
  margin: 2px 0px 2px 2px;
  border: none;  
}

img.float-left {
  float: left;
  margin: 2px 0px 2px 2px;
  border: none;
}


/* ----------------------- Drop Down Menu ------------------------------------------- */

.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  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;
}

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

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

.dropdown:hover .dropbtn {background-color: #3e8e41;}



/* --------------------TEXT  Formats --------------------------------------------------- */

H1 {color: red; }

h2 {  text-transform:uppercase;
   	  color:blue}
h3 {  color: red; text-align:center;}

.just {text-align: justify }

hr {background-color: red;
   size: 2;
   width: 90%}

/* --------------------- Cell Phone reduction -------------------------------------- */

/* Use a media query to add a break point at 800px: */
@media screen and (max-width: 800px) {
  .left,.top, .right, .menu {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
  }
}
