*{
	box-sizing: border-box !important;
}

body{
	padding: 0;
	margin: 0;
	min-height: 100vh;
	background-color: #eee;
	display: flex;
	flex-direction: column;
	font-family: Arial, Helvetica, sans-serif;
}

a{
	color: #c00;
}

a:hover{
	color: black;
	text-shadow: 0 0 15px #ff662a;
}

main{
	flex-grow: 1;
}

main .pageWidth{
	position: relative;
}

main p {
	line-height: 1.5em;
}

h1, h2, h3, h4{
	color: #c00;
    font-family: cursive;
}

h1.siteTitle{
    text-align: center;
    font-size: 3em;
}

.navHolder{
	width: 100%;
	background-color: #ddd;
	border-bottom: 2px solid #c00;
}

nav{
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}

nav a{
	padding: 10px;
	font-size: 1.5rem;
	flex-grow: 1;
	text-align: center;
	text-decoration: none;
    font-family: cursive;
}

nav a.selected::before, nav a.selected::after{
    opacity: 0.5;
    font-size: 0.8em;
	color: red;
}

nav a.selected::before{
    content: "囍 - ";
}

nav a.selected::after{
    content: "- 囍";
}

nav a.selected{
	border-left: 2px solid #c00;
	border-right: 2px solid #c00;
	background-color: #fff;
}


nav a:hover{
	text-decoration: none;
	background-color: #c00;
	color: white;
}

button{
	margin: 5px 0;
	padding: 10px;
	border: 2px outset #c00;
	color: #c00;
	background-color: black;
	border-radius: 0.5em;
	cursor: pointer;
}

button:hover{
	background-color: #c00;
	color: black;
}

button:disabled{
	color: grey;
	border-color: grey;
	cursor: not-allowed;
}

button:disabled:hover{
	background-color: white;
}

li{
	margin-bottom: 1em;
}

.pageWidth{
	max-width: 960px;
	margin: 0 auto;
	padding: 10px;
	background-color: #fff;
	min-height: 100%;
	color: #222;
    border-left: 2px solid #c00;
    border-right: 2px solid #c00;
}

.scrollOverflow{
	width: 100%;
	height: 10vh;
	position: relative;
}

.fullwidth{
	width: 100%;
}

.mapFrame{
	max-width: 100%;
}

.name{
    color: black !important
}

div.center{
    text-align: center;
}


.infoBlock {
    border-bottom: 1px dashed #c00;
}

.infoBlock h2 {
    margin-bottom: 0;
}

.infoBlock {
    margin-bottom: 2em;
}

.imageGuide{
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

.screenshot{
	max-width: 50%;
	height: auto;
}

.attractionsGrid{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-gap: 10px;
}

.attractionBlock{
	padding: 10px;
}

.attractionBlock h3 {
	margin-bottom: 0;
}

.attractionBlock img {
	width: 100%;
	height: auto;
}

.attractionBlock .caption{
	font-style: italic;
	opacity: 0.8;
}

.commitBlock {
	border-bottom: 1px solid #c00;
	border-top: 1px dashed #c00;
}

@media screen and (max-width: 600px){
    nav{
        flex-direction: column;
    }
    nav a{
        flex-grow: 0;
    }
	.screenshot{
		max-width: 100%;
	}
}


