p{
	font-family: Verdana, Geneva, sans-serif;
	font-size: 20px;
	color: black; 
}
.row{ /*class of division for setting up rows across the page*/
	
}

.websiteTitle{ /*The title of the website (not webpage) - seen at the top of every webpage*/
	margin: auto;
	font-family: "Times New Roman", Times, serif;
	font-size: 80px;
	text-align: center;
	color: black; 
	background-color: #ffffe5;
	
}

.webpageTitle{
	margin: auto;
	font-family: "Times New Roman", Times, serif;
	font-size: 40px;
	text-align: center;
	color: black; 
	background-color: #ffffe5;
}

.image{
	width: 400px;
	height: auto;
}

.grid-container{
  display: grid;
  grid-template-columns: auto auto auto auto;
  padding: 10px;
}

.gridContainerDestinations{
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 20px;
}

.grid-item{
  padding: 10px;
  font-size: 30px;
  text-align: center;
}

.columnLeft {
  float: left;
  width: 17.5%;
}

.columnCenter {
  float: left;
  width: 65%;
}

.columnRight {
  float: left;
  width: 17.5%;
}



/*below this point the CSS is for the navigation bar*/


/* Add a black background color to the top navigation */
.topnav {
  background-color: #ffffce;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #111;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #fff8c8;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #fff59e;
  color: black;
}

/*Below this point is the CSS for the contact form*/

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 50px;
}

/*Below this point is the CSS for the slideshow gallery*/


* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #FFF;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}