:root {
	--bg-color: #FEF6E3;
	--text-main: #403E39;
	--text-semilight: #807B71;
	--text-light: #66605c;
	--button-1: #a6a6a4;
	--button-2: #929291;
	--button-3: #c1c2ca;
	--main-font: 'Cormorant Garamond';
}
/*
ft {
	background-color: #fff1e5;
	secondary-background: #ccc1b7;
	masthead-color: #231f20;
	light-text: #66605c;
	links?: #4f391b;
*/

body {
	background-color: var(--bg-color);
	color: black;
	padding: 0;
	margin: 0;
	font-family: var(--main-font), serif;
}

#thequote {
	display: block;
	width: 40%;
	margin:  16% auto auto;
}
#thequote p.thequote {
	font-family: var(--main-font), serif;
	font-weight: normal;
	font-size: xx-large;
	font-style: italic;
	color: var(--text-main);
}
#thequote #anywhere {
	text-decoration: underline solid transparent;
	cursor: pointer;
}
#thequote p.attribution {
	font-family: var(--main-font), serif;
	font-size: x-large;
	font-weight: normal;
	text-align: right;
	color: var(--text-semilight);
}

#cover {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	background-color: var(--bg-color);
	display: block;
	z-index: 20;
}

#deets {
	padding: 4%;
	margin: 7% 0 5% 0;
}
#deets p {
	margin: 10px 0;
}
#deets p.thequote {
	font-family: var(--main-font), serif;
	font-weight: normal;
	font-size: x-large;
	font-style: italic;
	color: var(--text-main);
}
#deets p.place {
	font-family: var(--main-font), serif;
	font-weight: normal;
	font-size: large;
	color: var(--text-main);
}
#deets p.place span {
	font-weight: 700;
}
#deets img.placephoto {
	max-width: 100%;
	max-height: 350px;
}
#deets p.photocredit {
	font-family: serif;
	color: var(--text-light);
	margin: 4px 0;
	width: 100%;
	font-size: x-small;
}
#nextPlace, #suggestPlace {
	color: var(--bg-color);
	background-color: var(--button-2);
	padding: 12px 24px;
	border-radius: 6px;
	float: left;
	margin: 12px 12px auto 0;
}
#nextPlace:hover, #suggestPlace:hover {
	background-color: var(--button-1);
	cursor: pointer;
}

#map {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	z-index: 10;
}

#container {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 10;
}
#no1 {
	display: block;
	width: 50%;
	height: 100%;
	margin: 0;
	padding: 0;
	float: left;
	position: relative
}
#no2 {
	display: block;
	width: 50%;
	height: 100%;
	margin: 0;
	padding: 0;
	float: left;
	position: relative;
}

@media only screen and (max-width: 767px) {
	#thequote {
		width: 60%;
	}
	#thequote p.thequote {
		font-size: large;
	}
	#thequote p.attribution {
		font-size: medium;
	}
    #no1, #no2 {
        display: block; 
        float: none;
		height: auto;
        width: 100%;
    }
    #no1 {
	    height: 60%;
	    position: absolute;
	    bottom: 0;
    }
    #deets {
		padding: 1% 4%;
		margin: 1% 0;
		text-align: center;
	}
	#deets p {
		margin: 0;
	}
	#deets p.thequote {
		font-size: medium;
	}
	#deets p.place {
		font-size: small;
		margin-bottom: 8px;
	}
	#deets img.placephoto {
		width: auto;
		height: 180px;
	}
	#nextPlace, #suggestPlace {
		padding: 12px 12px;
		margin:  8px 1%;
		float: none;
		width: 40%;
		display: inline-block;
	}
	
    #no2 {
	    height: 40%;
	    position: absolute;
	    top: 0;
    }
    #map {
	    width: 100%;
    }
}
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
	#thequote {
		width: 60%;
	}
    #no1, #no2 {
        display: block; 
        float: none;
		height: auto;
        width: 100%;
    }
    #no1 {
	    height: 60%;
	    position: absolute;
	    bottom: 0;
    }
    #deets {
		padding: 1% 4%;
		margin: 1% 0;
		text-align: center;
	}
	#deets p {
		margin: 4px;
	}
	#deets p.place {
		margin-bottom: 8px;
	}
	#nextPlace, #suggestPlace {
		padding: 12px 16px;
		margin:  8px 16px;
		float: none;
		display: inline-block;
	}
	
    #no2 {
	    height: 40%;
	    position: absolute;
	    top: 0;
    }
}