/* Style.css */
    header {
    background-color: lightgray;
    border: solid 1px red;
    font-family: Segoe UI, Arial, Helvetica, sans-serif;

    }

    body {
      font-family: Segoe UI, Arial, Helvetica, sans-serif;
      font-size: 14px;
    }  

    ul {
        margin: 0;
        padding: 0;

    }

    /* Header */

    header {
    background-color: lightgray;
    color: black;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: lightgray 3px solid;
    

    }

    header a {
        color: black;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 16px;
        
    }

    header li {
        float: left;
        display: inline;
        padding: 0 20px 0 20px;
    }

    header nav {
        float: right;
        margin-top: 10px;
       
    }

    header .current a {
        color: blue;
        font-weight: bold;

    }

    header a:hover {
        color: #cccccc;
        font-weight: bold;
    }
    
    .container {
        width: 80%;
        margin: 0 auto;
    }
   
    .fixed-image {
        text-align: center;
    }

    

    }
   
    /* Article */

    article#main-col h1 {
        text-align: center;

    }

    article#main-col {
        float: left;
        width: 80%;
    }

    form.contact  {
        border: 2px;
        border-color: blue;
        color: black;
        display: center;
        margin-left: auto;
        margin-right: auto;
    }

    input[type="text"] {
        padding: 4px;
        height: 25px;
        width: 250px;

    }

    input[type="email"] {
        padding: 4px;
        height: 25px;
        width: 250px;

    }

    textarea {
        padding: 4px;
        height: 100px;
        width: 250px;

    }

    table {
       border: 2px;
       border-color: blue;
       color: black;
       display: center;
       margin-left: auto;
       margin-right: auto;
     
    }

    footer {
        clear: both;
        margin-top: 2%;
        border-top: 1px #ccc solid;
        padding: 1% 0%;
    }
    
    .footer-text {
        font-size: 16px;
        color: black;
        text-align: center;
    }