html{
	height:100%;
	font-family: "Arial", "helvetica", sans-serif;
}
body{
	color:white;
	background: #709660;
	background-repeat:no-repeat;
	height:100%;
}

a{
	cursor:pointer;
	text-decoration:inherit;
	color:white;
}

a:hover{
	color:#D6D6D6;
}

h2{
	font-size:4em;
	margin:0.5em;
}

header h1 a{
	color:white;
	text-decoration: inherit;
	font-size: 3em;
}


header{
	display:flex;
	flex-direction:row;
	align-items:center;
}

nav{
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
	gap:0.5em;
	font-size:2.5em;
}

nav a{
	font-size:xx-large;
}


.entrance{
	display:flex;
	flex-direction:column;
	width:100%;
	align-items:center;
	gap:1em;
}

.entrance-post {
	width:60%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}

.entrance-post img{
	width:50%;
}

.entrance-post .quote {
	font-size:xx-large;
	font-style:italic;
}

/* another room */
.living-room {
	display:flex;
	flex-direction:column;
	width:100%;
	align-items:center;
	gap:1em;
}

.living-room-post .subtitle{
	font-size:xx-large;
}

.living-room-post {
	width:60%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.living-room-post p{
	width:80%;
	font-size:x-large;
}

