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

#wrapper {
   width: 940px;
   margin: 30px auto;
}

main {
    width: 580px;
    float: left;
}

aside {
    width: 340px;
    float: right;
    padding: 10px;
}

img {
    max-width: 100%;
}

footer {
    clear: both;
    height: 60px;
    line-height: 60px;
    /* display: flex;
    justify-content: center; */
}

footer ul {
    display: flex;
    justify-content: center;
}

footer li {
    margin: 0 10px;
    list-style-type: none;
    color: grey;
}

footer a {
    color: gray;
}

/* My form styles */
form {
    max-width: 580px;
    margin-bottom: 20px;
}

form li {
    list-style-type: none;
}

form ul {
    margin-left: 15px;
    margin-bottom: 10px;
}

fieldset {
    padding: 10px;
    border: 1px dotted #800;
}

legend {
    font-style: italic;
    font-size: 1.3em;
    padding: 0 5px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 1.1em;
}

input {
    margin-bottom: 5px;
    height: 30px;
    width: 100%;
}

input[type="submit"] {
    width: auto;
}

input[type="radio"],
input[type="checkbox"] {
    height: auto;
    width: auto;
    margin-right: 3px;
    margin-bottom: 3px;
}

select {
    margin-bottom: 10px;
}

textarea {
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
}

/* TYPOGRAPHY */

h1 {
    color: #800;
    font-size: 3em;
    margin-bottom: 12px;
}

h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

p {
    margin-bottom: 10px;
}