

* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;    
}


/* Style the header */
.header {
    background-image: url("weinberg.jpg");
    background-repeat: repeat-x;
    background-position: center;
    color: #333;
    padding: 0;
    text-align: center;
    position: fixed;
    width: 100%;
    height: 90px;
    top: 0;
}
.header a{
    text-decoration: none;
    color: #f2f2f2;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    width: 100%;
    top: 90px;
    font-size: 1.1em
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: #333;
    color: #f2f2f2;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}


/* Create three unequal columns that floats next to each other */
.column {
    float: left;
    padding: 10px;
}

/* Left and right column */
.column.side {
    width: 15%;
    	
}

/* Middle column */
.column.middle {
    width: 70%;    
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}


/* Style the footer */
.footer {
    background-color: #333;
    color: #f2f2f2;
    padding: 4px;
    text-align: center;
    font-size: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

