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

/*remove padding for assignment*/
body {
  /* background: #eeee; */
  /* padding: 100px; */
}

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

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

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

h3 {
  font-size: 1.3em;
}

p {
  margin: 10px auto;
}

footer {
  clear: both;
  height: 60px;
  line-height: 60px;
  display: flex;
  justify-content: center;
  border-top: 10px;
}

footer ul {
  display: flex;
}

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

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

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

legend {
  font-size: 1.3em;
  font-style: italic;
  padding: 0 5px;
  background: #fff;
  border-radius: 5px;
}

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

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

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

select {
  margin-bottom: 10px;
}

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

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

input[type="submit"] {
  /*attribute selector NO SPACES BETWEEN SELECTOR AND ATTRIBUTE*/
  width: auto;
  height: auto;
}

label {
  margin-bottom: 5px;
}

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

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