/* Gobal Defaults */
html, body {
	margin: 0px;
	padding: 0px;
	text-align: center;
	font-family: 'Quicksand', sans-serif;
}

body {
	background-image: url("background.png");
	background-repeat: no-repeat;
	background-size: cover;

	padding: 5%;
}

a {
  color: black;
  text-decoration: none; /* no underline */
}

#top {
	height: 220px;
	min-width: 90%;

	/* background-image: url("vinca.png"); */
	background-image: url("banner4.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;

	border-radius: 1%;
	border-style: solid;

	position: relative;

	margin-bottom: 5%;
}

#titlediv {
	position: absolute;
	top: 0;
	left: 0;
	margin: 1%;

	/* background-color: rgba(0, 0, 0, 0.2); */
	text-shadow: 2px 2px 5px black;
}
#subtitlediv {
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 1%;
	text-shadow: 2px 2px 5px black;
}

#title {
	font-style: italic;
	font-size: xx-large;
	font-family: 'IM Fell DW Pica', serif;
	color: whitesmoke;
}
#subtitle {
	font-style: italic;
	font-size: xx-large;
	font-family: 'IM Fell DW Pica', serif;

	color: whitesmoke;
}


#bottom{
	font-weight: bold;
	position: relative;
}
#aboutText {
	margin: 20px;
}

#bottomleft, #bottomright {
	position: absolute;
	/* width: 42.5%; */
	width: 47.5%;
	height: calc(7% + 160px);
}
#bottomleft {
	/* left: 5%; */
}
#bottomright {
	/* right: 5%; */
	right: 0%;
}


.box {
	border-radius: 1%;
	border-style: solid;
	background-color: rgba(255, 255, 255, 0.65);

	margin-bottom: 5%;
	position: relative;
}


#about_link, #availablitylink {
	font-size: xx-large;
	height: 80px;
	line-height: 80px;
}


#contactBox {
	height: 100%;
}
#innerContactBox {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#contactTitle, #aboutTitle {
	font-size: xx-large;
	line-height: 40px;
}
#aboutTitle {
	margin: 25px;
}

input {
	background-color: rgba(255, 255, 255, 0.65);
	border-radius: 3px;
}

@media (max-width : 1000px) {
	body {
		background-size: 2000px;
	}

	#title {
		font-size: 60px;
	}

	#bottomleft, #bottomright {
		position: absolute;
		width: 88%;
		height: calc(7% + 160px);
		left: 5%;
		float: left;
	}

	#bottomright {
		top: calc(17% + 260px);
		height: calc(7% + 320px);
	}

	#about_link, #availablitylink {
		font-size: 60px;
	}
	#contactTitle, #aboutTitle {
		font-size: 60px;
	}
	#contactText {
		font-size: 40px;
	}

	#aboutText {
		font-size: 18px;
	}
}