body {  
    font-family: Arial, sans-serif;  
    margin: 0;  
    padding: 0;  
    line-height: 1.6;  
}  
  
header, footer {  
    text-align: center;  
    padding: 1em 0;  
    background-color: #f2f2f2;  
}  
  
nav ul {  
    list-style-type: none;  
    padding: 0;  
    text-align: center;  
}  
  
nav ul li {  
    display: inline;  
    margin: 0 10px;  
}  
  
nav ul li a {  
    text-decoration: none;  
    color: blue;  
}  
  
nav ul li a:hover {  
    text-decoration: underline;  
}  
  
main {  
    padding: 20px;  
}  
  
section {  
    margin-bottom: 20px;  
    border-bottom: 1px solid #ccc;  
}  
  
footer {  
    background-color: #333;  
    color: white;  
    text-align: center;  
    padding: 10px 0;  
    position: fixed;  
    width: 100%;  
    bottom: 0;  
}