
  /*
  Author:EYOYIBO TORITSEJU
  Date:02/19/2025
  File Name:styless.css
  */
  
  /* CSS Reset */
  body,header,nav,main,footer,img,h1,h5,h4 {
      margin: 0;
      padding: 0;
      border: 0;
      align-items: center;
  }
  
  /* Body Stylingn */
  body {
      background-color: orange;
      color: #green;
      line-height: 1.6;
      text-align: center;
  }  
      
  img {
      max-width: 100%;
      display: block;
      text-align: center;
  }
    
    /* Style rules for navigation area, */
    nav {
        background-color: #green;
        padding: 20px;
        text-align: center;
    }
    
    nav ul {
        list-style-type: none;
        margin: 1;
        text-align: center;
        background-color: green;
    }

    nav li {
        display: inline-block;
        font-size: 10em;
        font-family: Cursive, Monospace, Fantasy;
        font-weight: bold;
    }
    
    nav li a {
        display: none;
        color: red;
        padding: 0.5em 2em;
        text-decoration: none;
    }
    
    /* style rules for main content*/
    main {
        padding: 2%;
        background-color: lightblue;
        overflow: auto;
        font-family: Cursive, Monospace, sans-serif;
    }
    main p {
        font-size: 1.25em;
    }
    
    main h3 {
        padding-top: 2%;
    }
    

    
    main ul {
        list-style-type: square;
    }
    
    
    /* Style rules for footer content */
    footer {
        text-align: center;
        font-size: 0.85em;
        background-color: #1a1a1a;
        color: green;
        padding: 1% 0;
    }
    
    footer a {
        color: #1a1a1a;
        text-decoration: none;
    }
