@charset "UTF-8";
/* CSS Document */


/* Dropup Button */
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
	  border-radius: 1em;

}

/* The container <div> - needed to position the dropup content */
.dropup {
  position: relative;
  display: inline-block;
}

/* Dropup content (Hidden by Default) */
.dropup-content {
  display: none;
  position: absolute;
  bottom: 50px;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropup */
.dropup-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropup links on hover */
.dropup-content a:hover {background-color: #ddd}

/* Show the dropup menu on hover */
.dropup:hover .dropup-content {
  display: block;
}

/* Change the background color of the dropup button when the dropup content is shown */
.dropup:hover .dropbtn {
  background-color: #2980B9;
}

body, html {
  height: 100%;
  margin: 0;
  text-align: center;
}



.bannerText {
	vertical-align: middle;
}

.hero-image {
  
	
  background-image: url("../images/PierreDock1.jpg");

  /* Set a specific height */
  height: 50%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  position: absolute;
  border-radius: 1em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: hsla(358,32%,15%,0.74);
  padding-left: 1pc;
  padding-right: 1pc;
  padding-bottom: 1pc;
  padding-top: 1pc;
}

.bannerName {
	text-transform: uppercase;
	margin: 0.5pc;
}

.bannerTitle {
	font-size: 80%;
	margin:0.5pc;
}

section {
	text-align: left;
	padding-left: 4em;
	padding-right: 4em;
}


