/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #957DAD;
  padding: 20px 10px;
}

/* Style the header links */
.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 1em;
  line-height: 25px;
  border-radius: 4px;
  font-family: Avenir, serif;
  position: relative;

}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 1.5em;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: white;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: #E0BBE4;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
  line-height: 40px;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}


/*.header {
  padding: 10px;
  text-align: center;
  background-color: #957DAD;
  color: white;
  font-size: 1.5em;
  font-family: Avenir, serif;
}
*/
h1 {
	color: black;
	background-color: #D291BC;
	font-family: Avenir, serif;
	text-align: center;
}

body {
	display:flex;
	flex-direction: column;
	flex: 2;
	margin: 1em;
	font-family: Avenir, serif;
	justify-content: center;
}

#video1 iframe {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img{
	width:75%;
	margin-left: auto;
	margin-right: auto;
}

.column {
  float: left;
  width: 47.3%;
  text-align: center;
  margin: 1em;
}

/* Clear floats after the columns */
.row {
  content: "";
  display: table;
  clear: both;
}

.column2 {
  float: left;
  width: 47.3%;
  text-align: center;
  margin: 1em;
/*  margin-right: 6px;
  margin-left: 6px;*/
}

.column2 img {
	display: relative;
	width: 39.5%;
	margin-left: auto;
	margin-right: auto;
	
}
/* Clear floats after the columns */
.row2 {
  content: "";
  display: table;
  clear: both;
}


#sponsors img {
	display: block;
	width: 20%;
	margin-left: auto;
	margin-right: auto;

}

* {
  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;
}
#special{
	display: contents;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  padding: 16px;
  margin-top: -35px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
/* Position the "left button" to the left */
.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

/* 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: #222;
  padding: 2px 16px;
  color: white;
}

.prow: {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.pcolumn {
  float: left;
  width: 16.66%;

}

.mySlides img {
	margin-right: auto;
	margin-left: auto;
	display: block;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

/* Add some padding and a grey background color to containers */
.container2 {
	color: black;
	font-family: Avenir, serif;
	text-align: center;
}

.container2 h1 {
		background-color: #D291BC;
}

/* Style the input elements and the submit button */
input[type=text], input[type=submit] {
  width: 50%;
  padding: 12px;
  margin: 8px 0;
  box-sizing: border-box;
  display: inline-block;
}

/* Add margins to the checkbox */
input[type=checkbox] {
  margin-top: 16px;
}

/* Style the submit button */
input[type=submit] {
  background-color: #E0BBE4;
  color: black;
  font-family: Avenir, serif;
  width: 50%

}

input[type=submit]:hover {
  opacity: 0.8;
}