        h4 {
            font-variant: small-caps;
            font-weight: bold;
            color: green;
        }
        h2 {
            color: blue;
        }

        
        #customers {
                border-collapse: collapse;
                width: 100%;
            }
            
            #customers td, #customers th {
                border: 1px solid #ddd;
                padding: 0px;
            }
            
            #customers tr:nth-child(even){background-color: #f2f2f2;}
            
            #customers th {
                padding-top: 6px;
                padding-bottom: 6px;
                text-align: left;
                background-color: #4CAF50;
                color: white;
            }
        
    * {
            box-sizing: border-box;
        }
        
        body {
          margin: 0;
        }
        
        /* Style the header */
        .header {
            background-color: #FFFFE4;
            padding: 5px;
            text-align: center;
        }
        
        
        
        /* Create three unequal columns that floats next to each other */
        .column {
            float: left;
            padding: 3px;
        }
        
        /* Left and right column */
        .column.side {
            width: 25%;
        }
        
        /* Middle column */
        .column.middle {
            width: 74%;
            background-color: #FFFE8D;
        }
        
        /* Clear floats after the columns */
        .row:after {
            content: "";
            display: table;
            clear: both;
        }
        
        /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
        @media (max-width: 650px) {
            .column.side, .column.middle {
                width: 100%;
            }
        }
        
        /* Style the footer */
        .footer {
            background-color: #FFFFE4;
            padding: 10px;
            text-align: center;
        }
        
        .container {
            position: relative;
        }
        .center {
            
            left: 0;
            top: 50%;
            width: 100%;
            text-align: top left;
            font-size: 10px;
        }
        
        img {
            max-width: 100%;
            height: auto;
            /* For IE8 and earlier */
        }