
#wrapper {
    padding: 20px; /* Removed incorrect commas */
    width: 1000px;
    margin: 35px auto; /* Centers the wrapper horizontally */
}

.flex-container {
    display: flex;
    flex-flow: row;
}

body{
    font-family: Helvetica, Calibri, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}

main {
    margin-top: 25px;
    display: flex;
} 
    


main> img {
    margin-top: 100px;
}

p {
    font-size: .8em;
    line-height: 150%;
    text-align: center;
}

 div {
    padding-right: 15px;
    padding-left: 10px;
 }

h1 {
    color: #e94d40;
    font-size: 25px;
    text-align: center;
}

h2 {
    color: #0c243c;
    font-size: 22px;
    text-align: center;
    
}
 

a:link {
    color: #4d1d18;
    text-decoration: none;
}
 a:hover {
    color: #555;
    text-decoration: none;
 }
nav {
    font-size: 20px;
    margin-top: 5px;
    float: right;
    
}
nav> ul { 
    list-style-type: none;
    margin: 12px;
    padding: 0;
    word-spacing: 15px;
    display: flex;
    justify-content: center;

}
 

footer{
    width: 100%;
    font-size: 13px;
    text-align: right;

}

footer> ul {
    display: flex;
    justify-content: right;
    list-style-type: none;
    margin: 12px, auto auto auto;
}
    

