#wrapper {
    width: 750px;
    border: 1px solid black;
}

body{
    font-family: Arial, Helvetica, sans-serif;
}

header {
	background: #cc3333;
	padding: 10px;
}

#img1{
    display:block;
    margin-left:auto;
    margin-right:auto;
}

#img2{
    display:block;
    margin-left:auto;
    margin-right:auto;
}

nav {
	background: blue;
}

nav ul {
    list-style-type: none;
    margin:0;
    padding:0;
    display:flex;
    justify-content:space-around;
}

nav li {
}

#header-list{
    text-decoration: none;
    font-weight: bold;
    color:white;
}

#content {
	background: red;
    display:flex;

}

main {
	background-color: white;
    width:70%;
    padding-left:5px;
}

aside {
	background: #ffffcc;
    width:30%;
    text-align: center;

}

footer {

	background: blue;
    text-align:center;
    color:white;

}

#Title{
    font-weight:bold;
    font-size:20px;
}

h3{
    text-align:center;
}

.bold{
    font-weight:bold;
}