html, body, div, span, applet, object, iframe, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
    background-color: rgb(232, 232, 232);
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    
}

.title {
    text-align: center;
    font-weight: bold;
    color: #30292b;
    margin-top: 15px;
    font-size: larger;
}

#name-container, #email-container, #number-container, #dropdown-container, #radiobuttons, #checkboxes, #text-area {
    padding: 10px;
}

#name-label, #email-label, #number-label, #dropdown-container, #radiobuttons-label, #checkboxes-label, #text-area {
    font-weight: bold;
}

form label {
    padding-bottom: 10px;
}

#survey-form {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: auto;
    background-color: rgb(167, 184, 185);
    border: lightgrey solid 2px;
    border-radius: 10px;
    padding-right: 30px;
    padding-left: 30px;
    width: 600px;
    max-width: auto;
    height: 900px;
    font-size: large;
    color: #30292b;
    outline: none;
    box-shadow: 15px 5px 15px rgba(0, 0, 0, 0.2);
}

#name-container, #number-container, #email-container {
    display: flex;
    flex-direction: column;
}

input, select {
    border: rgb(255, 0, 230) solid 2px;
    font-size: large;
}

select {
    width: 100%;
    max-width: 600px;
}

#radiobuttons, #dropdown, #checkboxes, #text-area {
    display: flex;
    flex-direction: column;
}

textarea {
    max-width: auto;
    height: 150px;
    border: rgb(216, 216, 216) solid 2px;
    border-radius: 5px;
    font-size: large;
    font-family: Arial, Helvetica, sans-serif;
}

button {
    border: rgb(140, 166, 169) 2px;
    border-radius: 5px;
    font-size: larger;  
    color: rgb(255, 255, 255);
    background-color: rgb(57, 157, 211);
    width: 100%;
    /* padding-right: 525px; */
    /* text-align: center;    */
}

footer {
    margin-top: 30px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: small;
    color: gray;
}

input:focus, textarea:focus {
    border-color: rgb(216, 216, 216);
    outline: none;
}

input, select, textarea, #dropdown {
    border: 2px solid gray;
    border-radius: 5px;
    font-size: large;
    box-sizing: border-box;
}

#dropdown:focus {
    border-color: rgb(216, 216, 216);
    outline: none;
}

#dropdown-container label {
    padding-bottom: 10px;
    display: block;
}

.subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
    font-weight: bold;
}

#text-area {
    padding-bottom: 20px;
}

#submit {
    display: flex;
   align-items: center;
    justify-content: center;
}