* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
    background-color: rgb(255, 243, 243);
}

#wrapper {
    width: 940px;
    margin: 30px auto;
}

main {
    width: 500px;
    float: left;
}

aside {
    width: 340px;
    float: right;
}

aside img {
    width: 100%;
}

footer {
    clear: both;
    line-height: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
}

footer ul {
    display: flex;
}

footer ul {
    list-style-type: none;
    margin: 0px 10px;
}

form {
    max-width: 580px;
}

fieldset {
    padding: 10px;
    border-radius: 5px;
    border: 1px dotted red;
}

legend {
    font-size: 1.3em;
    font-style: italic;
    padding: 0px 5px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 1.1em;
}

input {
    margin-bottom: 10px;
    width: 100%;
    height: 30px;
}

input[type=radio],
input[type=checkbox] {
    width: auto;
    height: auto;
    margin-right: 10px;
}

form li {
    list-style-type: none;
}

form ul {
    margin-top: 10px;
    margin-left: 20px;
}

input[type=submit] {
    width: auto;
}

textarea {
    width: 100%;
    height: 150px;
    margin-bottom: 10px;
}

h1 {
    color: rgb(52, 0, 0);
    font-size: 3em;
    margin-bottom: 12px;
}