/* This setting will apply to the whole page */

*{
margin:5;
box-sizing: border-box;

}


body {
    font-family:"Century Gothic";
    /*font-family: "Arial","Helvetica", sans-serif;*/
    background-color: #FFEECC;
    font-size: 14px;
    }

p1{
   font-family:"Century Gothic";
   color:black;
   font-size:35px;    
   /*border: 2px dashed red;*/  
  
   }

p2 {
   
   font-family:"Century Gothic";
   color:orange;
   font-size: 25px;
   
}




h1 {
    color: #000000;
    font-size: 18px;    
    
   }


/* The navbar */
.topnavouter{
   float:right;
   width: 100%;
   background-color: #ff8c00;
   diplay:flex;
}

.topnav {  
  overflow: hidden;  
  color: white;
  width: 100%;
}

/* Navbar links */
.topnav a:Link  {
  float: left;  
  color: #FFFFFF;
  text-align: center;
  padding: 25px 28px 30px 25px;
  text-decoration: none;
  font-size: 20px;
 
}

.topnav a:visited  {
   color: #EEEEEE;
   background-color: transparent;    
}

.topnav a:hover, a:focus {
    color: black;
    background-color: transparent;       
    text-decoration: underline;   
 }


.topnav a:active{
    color: black;
    background-color: transparent;
    text-decoration: underline;
}

a:link {
    color: blue;
    background-color: transparent;
    text-decoration: none;
}
a:visited {
    color: blue;
    background-color: transparent;
    text-decoration: none;
}
a:hover, a:focus {
    color: black;
    background-color: transparent;
    text-decoration: underline;
    background:gold; 
}
a:active {
    color: black;
    background-color: transparent;
    text-decoration: underline;
}


div.pagecontent {
    width: 70%;
    /*border: 1px solid gray;*/
    background-color: #FFFFFF;
    font-size: 16px; 
    text-align: left; 
       
}


div.container {
    width: 100%;
    /*border: 1px solid gray;*/
    background-color: #FFFFFF;
    font-size: 16px;  
       
}


.outercontainer{
    margin:80px ; 
    /*margin: 1.5rem;*/
    margin-top: 2px;
    margin-bottom:2px;    
}

.innercontainer_2boxes{
    float:left;
    width:50%;
    /*border: 2px dashed red;*/  
    font-size: 10 px;
    padding: 1.5em;
    text-align: left;        
}

.innercontainer_3boxes{
    float:left;
    width:33%;
    /*border: 2px dashed red;*/    
    font-size: 3 rem;
    padding: 0.5em;
    text-align: center;       
}

.innercontainer_4boxes{
    float:left;
    width:25%;    
    /*border: 2px solid gray; */  
    font-size: 3 rem;
    padding: 0.5em;
    text-align: center; 
     
        
}

.page{ clear: both;}



nav {
    float: left;    
    margin: 0;
    padding: 3em;
}


.left {
   float: left;
   padding: 0px 0 0 0;
   margin: 30px;
}

header{
    padding: 2px;
    color: white;
    background-color: #ff8c00;
    clear: left;
    text-align: center;
    overflow: hidden;       
}

.footer {
    padding: 1em;
    color: black;
    //background-color: #ff8c00;   
    background-color: gray; 
    text-align: center;    
}

.footer_innercontainer_3boxes{
    float:left;
    width:33%;
    /*border: 2px dashed red;*/    
    font-size: 3 rem;
    padding: 20px 38px 38px 50px;
    text-align: left;       
}




.button1 {  
    margin-left: 30px;
    margin-top: 1px;
    width: 230px;
    height: 60px;   
    background:orange;
    background-hover:yellow;
    border: none;
    color: white;   
    font-size:20px;
    border-radius: 4px;    
    cursor: pointer;
    text-align: center;
    display: inline-block;        
}

.button1:hover {
  background-color: green;
  color: white;
}

.button2 {  
    
    margin-top: 10px;
    margin-left:10px;
    width: 75%;
    height: 60px;  
    background:#4682B4;
    background-hover:yellow;
    border: none;
    color: white;   
    font-size:15px;
    border-radius: 10px;    
    cursor: pointer;
    text-align: center;
    display: inline-block;
            
}

.button2:hover {
  background-color: #90b4d2;
  color: #152736; // leter color
}


/* Side Bar Navigation */
.left_sidenavigation {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  //left: 0;
  right:0;
  //background-color: #111; /* Black*/
  background-color: #000000; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  overflow-y: hidden; /* Disable vertical scroll */
  padding-top: 4px; /* Place content 40px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.left_sidenavigation a {
  padding: 8px 8px 8px 2px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}


/* When you mouse over the navigation links, change their color */
.left_sidenavigation a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.left_sidenavigation .button_close {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 45px;
  margin-left: 50px;
}

/* menu division */
.rightside {
         width:100%;
        //position: -webkit-sticky;
        //position: sticky;
        position: fixed; // It does not move when scrolling 
        top: 50;
        //background-color: #666;
        background-color:white;
         padding: 8px 8px 1px 2px;
        //padding: 10px;
        font-size: 20px;  
        right:0;         // at position zeor of the right                         
        float: right;    // stay on right size        
       
       
        
      }

.main {
        //float: right;
        width: 75%;
        top: 0;
        //background-color: #666;
        padding: 40px;
        font-size: 25px;
         
      }


/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .left_sidenavigation {padding-top: 15px;}
  .left_sidenavigation a {font-size: 18px;}
}



.tile{
  float: left;
  width: 35%;
  padding: 6px;
  margin:3px;
  height: 75px;
  background-color:#151515';  
}

.tile:hover {
   /*background-color: #D8D8D8;*/
   background-color:  gold;
}
















