html, body, div, span, applet, object, iframe,
h1, 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;
}
section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

section p {
    width: 250px;
    height: 250px;
    background-color: gray;
    color: aliceblue;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    line-height: 36px;
    padding: 0 10px;
    margin: 5px 0;
    font-family: Arial, Helvetica, sans-serif;
}
header {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    background-color: #ccc;
    box-shadow: #aaa 3px 3px;
    margin: 0 0 5px 0;
}


header h1 {
    width: 75%;
    font-size: 20px;
    text-transform: capitalize;
    padding: 5px;
}

.icon {
    margin: 5px;
    color: white;
    font-size: 140%;
}

#main-menu {
    display: none;
}

#main-menu ul{
    width: 100%;
}

#main-menu li{
    font-size: 20px;
    padding: 5px;
    text-align: center;
    border-bottom: 1px #ccc solid;
}

#main-menu a {
    text-decoration: none;
    color: rgb(255, 182, 255);
}

h2{
    font-size: 18px;
    text-align: center;
}

input, textarea {
    width: 90%;
    font-size: 18px;
    padding: 10px;
    width: auto;
    border-radius: 5px;
    margin: 15px auto;
}

label {
    font-family: Arial, Helvetica, sans-serif;
}

form {
    text-align: center;
    border-radius: 30px;
    background-color: rgb(211, 211, 211);
    margin: 100px 10px;
    padding: 10px 10px 15px 10px;
}

#button {
    background-color: rgb(68, 211, 255);
    color: white;
    text-shadow: 0 0 3px #000000, 0 0 5px #000000;
    border-radius: 50px;
    width: 55%;
}

span {
    color: red;
}

#address {
    display: none;
}