
* {
  box-sizing: border-box;
}


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

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

 .center {
    border-style:solid;
    border-width:1px;
    border-color:red;
    background: white;
  padding: 10px;
  float: left;
  width: 27%;
}



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


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

/* ----------------------- image ------------------------------------------- */


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;}

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

.just {text-align: justify }

.tab { margin-left: 40px; }

.div1 {
  width: 60%;
  padding: 20px;
  border: 2px solid blue;
  align: center;
 
}


/* --------------------- 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 */
  }
}