* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    
}

body {
    font: 16px "book antiqua", Arial, sans-serif;
    background: #f3f0e8;



.sidebar {
    position: absolute; 
    top: 0;
    left: 0;
    width: 170px;
    height: 100vh;
    color: white;
    background-color: seagreen;
    
.sidebar h2 {
    padding: 10px;
    text-align: center;
}

.sidebar ul {
    list-style: none;
}

.sidebar a {
    display: contents;
    padding: 18px 15px;
    text-decoration: none;
}

.sidebar a:hover {
    font-weight: bold;
}

.main {
display: flex;
    margin-left: 1700px;
    min-height: calc(100vh);
    color: white;
}

.main a {
    color: #606c5a;
}

.main a:hover {
    font-weight: bold;
}


.banner img {
    width: 100%;
    height: 130;
}


.content {
    padding: 40px;
    background: #f3f0e8;
    color: #4C3E65;
    flex: 1;
}

.content h3 {
    margin-bottom: 15px;
}

.content p {
    line-height: 1.6;
}


/* FOOTER */

footer {
    width: 100%;
}

.contact-banner {
    display: flex;
    align-items: right;
    padding: 20px;
    background: seagreen;
    color: white;
}

.contact-text {
    flex: 1;
    text-align: right;
}

.contact-text p {
  margin-left: 170px;
    margin: 16px 0;
}

.contact-text a {
    color: #white;
}

.contact-photo img {
    width: 240px;
    margin-left: 20px;
    display: block;
}
