@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  	font-family: Arial, Helvetica, sans-serif;
  	width: 80%;
	min-width: 540px;
	max-width: 1000px;
  	margin: auto;
	background-image: url("Background.jpg");
	background-position: center;
    background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.header {
  line-height: 0;
  position: relative;
}

.container-top-right {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 40%;
  padding-right: 5%;
  padding-top: 1%;
}

.container-bottom-right {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 40%;
  padding-right: 5%;
  padding-bottom: 1%;
}

.location-text {
  text-align: center;
  color: white;
  font-size: 1.4vw;
}

.other-text {
  text-align: center;
  color: white;
  font-size: 1.6vw;
}

.navbar {
  overflow: hidden;
  grid-area: nav;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  background-color: #130d07;
  text-align: center;
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 12px 20px;
  text-decoration: none;
}

.navbar a:hover {
  background-color: #004d00;
  color: white;
  text-decoration: none;
}

.navbar a.active {
  background-color: #003300;
  color: white;
}

a {
	color: blue;
	text-decoration: none
}

a:hover {
	text-decoration: underline
}

.footer {
  width: 100%;
  margin: auto;
  line-height: 0;
}

@media only screen and (max-width: 768px) {	
	.location-text {
	  font-size: 12px;
	}
	
	.other-text {
	  font-size: 14px;
	}

}

@media only screen and (max-width: 992px) {
	body {
	  font-size: 14px;
	}
	
	.navbar a {
	  float: none;
	  padding: 12px 10px;
	  width: 100%;
	}
}

@media only screen and (min-width: 1428px) {
	.location-text {
	  font-size: 20px;
	}
	
	.other-text {
	  font-size: 24px;
	}
}