<title>Pasta Amore</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
    box-sizing: border-box;
}

body {
  margin: 0;
}

/* Style the header */
.header {
    background-color: #f1f1f1;
    background-image: url("http://www.geocities.ws/swanson/mywebpage/CSS/DD%20Grunge%20Damask%20Background%2089003.jpg");
    padding: 20px;
    text-align: center;
}

/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #0B9446;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #CF1C44;
    color: black;
}

/* Create two unequal columns that floats next to each other */
.column {
    float: left;
    padding: 10px;
}

/* Left column */
.column.side {
    width: 50%;
}

/* Right column */
.column.middle {
    width: 50%;
}

/* 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 screen and (max-width: 600px) {
    .column.side, .column.middle {
        width: 100%;
    }
}

/* Style the footer */
.footer {
    background-color: #0B9446;
    padding: 10px;
    color: #ffffff;
    text-align: left;
   
}
body {
    background-image: url("http://www.geocities.ws/swanson/mywebpage/CSS/DD%20Grunge%20Damask%20Background%2089003.jpg");
    color: #543136;
}
</style>