/* Styles for my form exercise */

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

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

}

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

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

footer {
  clear: both;
  height: 50px;
  line-height: 50px;
  display: flex;
  justify-content: center;
  border-top: 1px dotted #800;
}

footer ul {
  display: flex;
}

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

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

form {
  max-width: 500px;
  margin-bottom: 20px;
}

legend {
  padding: 10px;
  font-style: italic;
  padding: 0 5px;
}

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

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bol;
  font-size: 1.1em;
}

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

input[type=radio],
input[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;
}

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

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

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

aside img {
  width: 340px;
  margin-top: 15px;
}

p {
  margin-top: 15px;
}