body{
    @font-face {
        font-family: Farro;
        src: url(../font/OdibeeSans-Regular.ttf);
        background-color:rgba(211, 211, 211);
        margin: 0px;
        padding-left: 20px;
        color: rgb(66, 185, 201);
        font-size: 30px;
        }
    
       
}

header, nav, section,footer{
    border-width: 2px;
    border-style: solid; 
    border-color: black; 
}

header {
    width: 100%;
    height: 100%;
    font-size: 35px;color: white;
    text-align: center;
    background-image: url('../images/maroon.jpg');
    
   }
    
   nav {
    background-color:black;
    overflow: hidden;
    }
   
    
   nav a {
    float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
   }

   nav a:hover {
    background-color: white;
    color:black;
    }
   
   nav a.active {
    background-color: rgb(10, 8, 4);
    color: white;
    }

   section {
    width: 100%;
    height: 650px;
    padding-right: 0px;
    background-image: url('../images/navy\ background.jpg');
   }

   footer {
    width: 100%;
    height: 150px;
    background-image: url('../images/maroon.jpg');
   }

   table, th, td {
    border: 1px solid white;
   }

   th, td {
    padding: 5px;
   }

@media screen and (max-width: 720px) {
     /* For mobile phones: */
    header, nav, section, footer {
    width: 100%;
    }
   }

   
