
* {
  box-sizing: border-box;
}


/* ----------------------- DROP DOWN MENU ------------------------------------------- */
.navbar {
  overflow: hidden;
  background-color: blue;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: #CFF7F4;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: blue;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: blue;
}

.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 {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* ----------------------- 3 MAINBOXES TOP, LEFT, RIGHT ------------------------------------------- */

.top {
  background-color: #418FDE;
  padding: 1px;
  float: left;
  width: 90%; 
  border-style:solid;
  border-width:1px;
  border-color:blue;
}

.left {
    border-style:solid;
    border-width:1px;
    border-color:blue;
    background: white;
  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: 10px 10px 10px 10px;
  border: none;  
}

img.float-left {
  float: left;
  margin: 10px 10px 10px 10px;
  border: none;
}





/* --------------------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 */
  }
}
