@import url('https://fonts.googleapis.com/css2?family=Nerko+One&display=swap');
body{

    background-color: #e0edd4;  
    background-image: url(https://codehs.com/uploads/18992bc621805a5c45074d68189b0740);
  
}
  
    h1 {
    color: #a8cdc8;
    }
    #container{
    width:1072px;
    /* padding of zero puts the image right up against the edge of the frame */
    padding: 0px;
    background-color: #80a09e;
    margin: auto;
    border: 20px solid teal;
    }
    
      
    #content{
    padding: 15px;
    margin: 30px;
    background-color: #a8cdc8;
    color: black;
    }
    
    #footer{
    background-color:#a8cdc8;
    font-size:14px;
    font-weight: bold;
    color:#ffffff;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    height:50px;
    width:100%;
    line-height:51px;
    }
  
    #menu {
    background-color: #a8cdc8;
    height:70px;
    text-align: center;
    }
    
    #menu a {
    text-decoration: none;
    color:#f2d9a0;
    padding: 25px;
    font-size: 24px;
    font-weight: bold;
    /* text is aligned in the middle*/
    line-height: 71px;
    }
    
    #menu a:hover {
    border-top: 3px dotted teal;
    border-bottom: 3px dotted teal;
    padding-top: 5px;
    padding-bottom: 5px;
    color: white;
    }

/* create a column class */
    .column {
    float: left;
    padding: 15px;
    
    }
    /* left side */
    .column.left {
    width:45%;
    }
    /* middle */
    .column.middle {
    width:10%;
    }
    /* right */
    .column.right {
    float: right;
    width: 45%;
    }
    /* Clear floats after the columns */
    .column_area:after {
    content:"";
    display: table;
    clear: both;
}