@charset "utf - 8";
/*
Name:Tamarah Hogan 
Date:12/6/25 */

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    background:white;
    margin: 20px 0;
    border-color: black;
}
tr, td {
    border: 1px black;
    padding:10px;
    text-align: left;
    background-color:darkolivegreen ; 
    color: black;
}

/* ===============================
   Mobile Styles: 0px to 640px 
   ===============================
*/
@media only screen and (max-width: 640px) {

   section#main {
      width: 100%;
   }
   
   section#right {
      width: 95%;
   }
   
   a#navicon {
      display: block;
   }
   
   header nav ul {
      display: none;
   }
   
   header nav ul li {
      font-size: 3em;
      line-height: 1.2em;
      height: 1.2em;
   }
   
   a#navicon:hover+ul, header nav ul:hover {
      display: block;
   }
}

/* =============================================
   Tablet and Desktop Styles: greater than 640px
   =============================================
*/
@media only screen and (min-width: 641px) {
     header nav ul {
      display: flex;
      flex-flow: row nowrap;
   }
   
   header nav ul li {
      flex: 0 1 auto;
   }
}