/* Text font for the body of my web pages. */
body {
    font-family: Arial, Helvetica, sans-serif;
  }
.navbar a {
    float: center;
    font-size: 18px;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

  /* Added header color, padding and alignment */
  header {
              background-color: #7972a6;
              padding: 20px;
              color: white;
              text-align: center;
          }
  /* added color to my footer for all pages */        
 footer {
           background-color: #7972a6;
           padding: 30px;
           color:white;
           text-align: left;
 }     
    /* this is for all the tables i have made for the website */

    .table-container{
      width: 90%;
      margin: 0 auto;
    }
 
        table {
            border-collapse: collapse;
            width: 100%;
          }
          
          th, td {
            padding: 8px;
            text-align: center;
            vertical-align: middle;
            border-bottom: 1px solid #000000;
            border-left: 1px solid #000000;
            border-right: 1px solid #000000;
          }

          th {
            background-color: #382d84;
            color: white;
          }    
      
ol.c {
  list-style-type: upper-roman;
}

img {
  border: 8px solid #000;
}
/* Added the box model layout */
.form-container {
  width: 60%;  
  margin: 0 auto;  
  padding: 30px;  
  border: 10px solid black;  
  border-radius: 10px;  
  background-color: #fff; 
  box-sizing: border-box; 
}

input[type="text"] {
  width: 20%;  
  padding: 8px;  
  margin: 8px 0;   
  border: 1px solid #ccc;  
  border-radius: 4px;  
}

input[type="submit"],
input[type="reset"] {
  padding: 10px 15px;
  margin-top: 10px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

input[type="submit"]:hover,
input[type="reset"]:hover {
  background-color: grey;  
}


