/* WATS 3020 Mad Libs Assignment */

/* General Styles */
body {
    padding: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}

p {
    font-weight: bold;
}

/* Form Styles */
form {
    display: float;
    width: 85%;
    margin: 0 auto;
} 

p.madLibsInstructions {
    font-size: 1.2rem;
    padding-bottom: 1rem;
}

form p{
    line-height: 1.5rem;
}

input {
    margin-left: 1rem;
}

/* Submit and Reset styles */
input:nth-last-of-type(2) {
    margin-left: 0;
    padding: 0.5rem;
    font-weight: bold;
}

p:last-of-type input:nth-last-of-type(1) {
    margin-left: 4rem;
    padding: 0.5rem;
    font-weight: bold;
}