/* styles for my form exercise */

*{
    padding:0;
    margin:0;
    box-sizing: border-box;
}
/* I am our teacher is adding th padding to the body below for demonstraion purposes only. I need to REMOVE THE PADDING once when I start working on my homework!!!!!! */

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

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

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

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

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

footer ul {
    display: flex;
}

footer li {
    margin: 0 10px;
    list-style-type: none;
}
/* my form styles */




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

fieldset{
    padding: 10px;
    border-radius: 5px;
    border: 1px dotted #800;
}
/* Here also I can put margin bottom some pxs to have some space below the lebel */

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

label {
    display: block;
   margin-bottom: 5px;
   font-weight: bold;
   font-size: 1.1em;
}
 /* I need some space to see below my input,make a marging bottom some pxs and to make biger the insid do the hight, & if a need to expand the widith pxs fully ,do width 100% with out pxs*/




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

input[type=Radio],
input[type=checkbox] {

height: auto;
width: auto;
margin-right: 3px;
}

form li {
    list-style-type: none;
}
/* Any ul on my form will have a marging bottom */
form ul {
    margin-left: 15px;
    margin-bottom: 10px;
}
/* Note that, there is no space within the imput and attribute selector [] */
input[type="submit"] {
    width: auto;
}
select {
    margin-bottom: 10px;

}


textarea {
    width: 100%;
    height: 150px;
    margin: 10px;
}

img {
    display: block;
    max-width: 100%;
    margin-bottom: 30px;
}



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

h3 {
    color: black;
    font-size: 1.80em;
    margin-bottom: 12px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1em;
}   
