   
/*      <link rel="stylesheet" href="SecondStyleSheet.css">    */ 
   
   <style>
* {
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  font-size: 1.1em; background-color: #FDA237;
} 


.grid-container {
  display: grid;
  grid-template-areas:
  'menu'
  'header'
  'main'
  'facts'
  'footer';
  background-color: #FDA237;
  gap: 0;
}

.header {
  grid-area: header;
  background-color: #FDA237;
  text-align: center;
  color: #000;
  margin-top:5px;
}

.header > h1 {
  font-size: 3rem;
}

.menu {
  grid-area: menu;
}             

/*
.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #33b5e5;
  color: #ffffff;
}

.menu li:hover {
  background-color: #0099cc;
}       */

.content {
  grid-area: main;
}

.content > h1 {
 font-size: 2rem;  
  margin-bottom: 7px;
}

.content > p {
 font-size: 1em; 
  margin-bottom: 7px;
  margin-left:15px;
  margin-right:15px;
}


.facts {
  grid-area: facts;
/*  border: 1px solid #0099cc;
  background-color: beige;
  padding: 10px;             */
}

.facts > h2 {
  font-size: 20px;
}        */


.facts li {
  margin-bottom: 5px;
}                            

.footer {
  grid-area: footer;
  background-color: #FDA237;
  color: #000;
  text-align: center;"

}  





 /*          top nav portion                           */
 .topnav {
  overflow: hidden;
  background-color: #ffffff;
}

.topnav a {
  float: left;
  display: block;
  color: #ff6600;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  
}

.active {
  background-color: #fff;
  color: black;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: #ff6600;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

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

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #c0c0c0;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
color: #ff6600 ;

}

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

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
         
  
  
   }


     .horizontal-list {
  list-style: none; /* Removes default bullet points */
  padding: 0; /* Removes default left padding */
  margin: 0; /* Removes default margin */
}

.horizontal-list li {
  display: inline-block;
  margin-right: 15px; /* Adds spacing between items */   
  padding-top: 5px;
  padding-bottom: 5px;
}   

ul {
	list-style-position: inside;
  list-style-image: url('images/marnball.gif');
}


</style>
