/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}

/* 
Clean, consistent professional design [ v/ ]
Pages are readable [ v/ ]
All pages, links, and images work [ v/ ]
You can create a clean, simple logo for the business or use the design from this photo [ v/ ]
Use the logo as the Favicon (you may have to research this) [ v/ ]
Include their photos [ v/ ]
Additional photos must be copyright free (ie. pexels.com) [ v/ ]
Color scheme appropriate for the business [ v/ ]
Include web fonts [ v/ ]
 */

 body{
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background-color: rgb(155, 255, 255);
 }
header {
	display: flex;
	height: 20%;
	justify-content: space-around;
	align-items: center;
	background-color: white;
	border-radius: 5px;
	margin: 20px;
}
img{
	height: 60px;
	border-radius: 5px;
}
a{
	text-decoration: none;
	color: skyblue;
}
h1{
	font-size: large;
}
#headerdiv{
	text-align: center;
}
#yap{
    grid-area: para;
	padding: 20px;
}
#house{
    grid-area: image;
	height: 100%;
	margin: auto;
}
#ghost{
    grid-area: face;
	height: 80%;
	width:90%;
	margin:5%;
	border-radius: 5px;
}
#book{
    grid-area: airbnb;
	padding: 10%;
}
#grida{
    display: grid;
    grid-template-areas:
    'para para image image'
	'para para image image'
	'para para airbnb airbnb'
	'face face airbnb airbnb';
}
#tub{
	grid-area: image;
	height: 100%;
	margin: auto;
}
#chat{
	grid-area: paraa;
	padding: 10px;
}
#blabber{
	grid-area: parab;
	padding: 10px;
}
#heade{
	grid-area: headi;
	padding: 10px;
	font-weight: 600;
}
#gridb{
    display: grid;
    grid-template-areas:
	'headi image'
	'paraa image'
	'parab parab';
}
article{
	padding: 10px;
	background-color: white;
	border-radius: 5px;
	margin: 5%;
	width: 90%;
}
footer{
	padding: 10px;
	background-color: white;
	border-radius: 5px;
	margin: 20%;
	margin-top: 0px;
	margin-bottom: 10px;
	width: 60%;
	text-align: center;
}
form{
	background-color: rgb(0, 0, 100);
	padding: 15px;
	margin: 10px;
	border-radius: 10px;
	color: white;
}
.form-flex{
margin: 10px;
}
#flex{
	display: flex;
	flex-flow:column wrap;
	height: 700px;
	width: 70%;
}
.slim{
	height: 120px;
	margin: 10px;
}
.title{
	grid-area: title;
	padding: 10px;
	font-weight: 600;
	text-align: center;
}
.lista{
	grid-area: lista;
	padding: 10px;
}
.listb{
	grid-area: listb;
	padding: 10px;
}
.picture{
	grid-area: pictu;
	height: 90%;
	width: 100%;
	margin: auto;
}
.gridc{
    display: grid;
    grid-template-areas:
	'title pictu'
	'lista pictu'
	'lista listb';
}
#small{
	font-weight: 400;
	font-size: x-small;
}