@import url(https://fonts.googleapis.com/css?family=Megrim);
@import url(https://fonts.googleapis.com/css?family=Raleway); 

.top_bar {
	height: 20%;
	position: relative;
	padding-left: 1%;
}

.home_page {
    background-image: url("media/homebg.jpg");
    background-repeat:no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

.contact_page {
    background-image: url("media/gallery/photo_6.jpg");
    background-repeat:no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

html {
min-height: 100%;
}

.gallery_page {
    background-image: url("media/gallery/photo_15.jpg");
    background-repeat:no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

.noinstagram_page {
    background-image: url("media/gallery/photo_16.jpg");
    background-repeat:no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

#top_logo {
	background: rgba(0, 0, 0, 0.3);
	width: 25%;
	padding-left: 1%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-top: 1%;
}

.about_page {
    background-image: url("media/aboutbg.jpg");
    background-repeat:no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

.footer_bar {
	position:absolute; bottom:0; left: 0;
	background-color: black;
	color: white;
	width: 100%;
	text-align: center;
	height: 10%;
}

.footer_bar_long {
	position:absolute; bottom:0; left: 0;
	background-color: black;
	color: white;
	width: 100%;
	text-align: center;
	height: 10%;
}

h1 {
	text-align: center;
	font-family: Megrim;
	word-spacing: 100px;
	font-size: 250%;
	color: white;
}

.hoverspan:hover {
	color: black;
	cursor: pointer;
}

h4 {
	text-align: center;
	font-family: Raleway;
	color: white;
}

h2 {
	font-family: Megrim;
	font-size: 250%;
	color: white;
}
.instagram {
	position:absolute; top:0; right:0;
	width: 7%;
	height: auto;
	margin-top: 1%;
	margin-right: 1%;
}

.nav_bar {
	font-family: Raleway;
}

.nav_button {
	background: rgba(0, 0, 0, 0.3);
	color: white;
	border: none;
	cursor: pointer;
	height: 28px;
	width: 10%;
	font-family: Raleway;
}

.nav_button:hover {
	color: black;
}

#home_body {
	font-family: Raleway;
	text-align: center;
	width: 50%;
	position: absolute;
  	left: 50%;
  	top: 50%;
  	transform: translate(-50%, -50%);
  	background: rgba(0, 0, 0, 0.6);
  	color: white;
}

p {
	font-size: 1.2em;
	padding-left: 20px;
	padding-right: 20px;
}

 a:link {
    text-decoration: underline;
    color: white;
}

a:visited {
    text-decoration: underline;
    color: white;
}

#about_body {
	font-family: Raleway;
	text-align: center;
	width: 50%;
	position: absolute;
  	left: 50%;
  	top: 50%;
  	transform: translate(-50%, -50%);
  	background: rgba(0, 0, 0, 0.6);
  	color: white;
}



/* this is the only code that I'm importing for my website - it's just
   to display the photo gallery. I looked at doing it myelf with just css and
   thought it was just a little silly not to use what's already out there
   and available. Yes it's a plugin but I set it up myself, lol. does that count? */

* { box-sizing: border-box; }

/* force scrollbar */
html { overflow-y: scroll; }

/* ---- grid ---- */

.grid {
  background: #DDD;
  margin-top: 35px;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 33.333%;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
}