

body {
    background-color: lightgrey;
}
h1 {
    text-align: center;
    text-decoration: underline;
}

/* background and sizing for textbox, select menu, radio buttons and data list. */
#textbox,.smenu,.rbutton, .idlist, .rbutton2 {
    background-color: lightblue;
    max-width: 50%; max-height: 25%;
    padding: 20px;
}

/* textbox */
input[type=text], input[type=password] {
    font-size: 1.4em;
    max-width: 60%;
}

/* select menu */
select {
    font-size: 1.4em;
}

/* radio buttons */
input[type=radio], input[type=checkbox] {
    transform: scale(2);
    margin-bottom: 2em;
}


/* Everything below is going to be for wk2_assignment2.html assignment */

section {
    border: 1px solid black;
    background-color: lightseagreen;
    min-height: 200px;
    padding-left: 20px;
}


