/* styles for my form excserice */

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

body{
    /* background: #eee; */
    /* padding: 100px; */
}

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

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

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

#container {
    width: 940px;
    /* height: 300px; */
    /* background: rgba(136, 0, 0, 0.695); */
    margin: 15px auto;
    border: #800 dotted 4px;

}

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

aside {
    width: 340px;
    float: right;
    margin-top: 20px;
}

img {
    max-width: 100%;
    display: block;
}

#container img {
    margin: 20px auto;
}

footer {
    clear: both;
    height: 60px;
    line-height: 60px;
    display: flex;
    /* justify-content: center; */
    border-top: 2px solid #800;
}

footer ul {
    display: flex;
}

footer li {
    margin: 10px;
    font-size: .9em;
    color: #555;
    /* list-style-type: none; */
}

footer li:nth-child(1) {
    list-style-type: none;
}

footer a {
    color: #555;
}

/* Form Styles */
form {
    max-width: 580px;
    margin-bottom: 20px;
}

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

legend {
    font-size: 1.3em;
    font-style: italic;
    padding: 0 5px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 1.1;
}

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

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

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

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

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

select {
    margin-bottom: 10px;
}

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

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

h3 {
    font-size: 1.7em;
    font-weight: 800%;
    margin-bottom: 8px;
}

.thx h1 {
    font-family: 'cursive';
    color: white;
}

a {
    color: #800;
}

p{
    margin-bottom: 20px;
    line-height: 1.4;
}

.thx p {
    margin: auto;
    font-style: italic;
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 10px;
}

p {
    font-size: 1em;
}

