@charset "utf-8";
/* CSS Document */
*	{margin:0px;}
html {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    overflow: scroll;
}
body {
	font-family: 'Tangerine', serif;
	font-weight:bold;
} 
	
.box {
  display: grid;
  grid-template-columns: 33% 33% 34%;
  margin-bottom:11px;
  border-style:none;
}
.grid-item1 {
  grid-column-start: 1;
  grid-column-end: 3;
  font-size:44px;
  background-color:lightgray;
  padding-top:5px;
  text-align: center;
}
@media only screen and (max-width:500px) {
.grid-item1 {
	font-size:33px;
}
}
.grid-item1 img {
	width:60px;
	padding-left:7px;
	padding-bottom:5px;
	float:left;
}
.grid-item2{
  background-color: lightgray;
  }
.dropbtn {
  background-color: lightgray;
  font-family: 'Tangerine', serif;
  font-weight:bold;
  color: black;
  padding-top:12px;
  padding-left:77px;
  text-align: center;
  font-size: 36px;
  border: none;
}
@media only screen and (max-width:550px) {
.dropbtn {
	padding-left:17px;
}
}
.dropdown {
  position:relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 240px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  font-size:26px;
  color: black;
  padding:7px;
  display: block;
  text-decoration:none;
}

.dropdown-content a:hover {background-color: lightblue;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: lightgrey;}

/* Slideshow container */
.slideshow-container {
  max-width: 1200px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 39%;
  width: auto;
  padding-top: 17px;
  padding-bottom: 17px;
  margin-top: -22px;
  color: red;
  font-weight: bold;
  font-size: 60px;
  }
@media only screen and (max-width:1050px) {
.prev, .next {
	font-size:30px;
	padding: 2px;
}
}
/* Position the "next button" to the right */
.next {
  right: 0;
  
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover {
  background-color: white;
  border-radius: 0px 12px 12px 0px;
  opacity: 0.8;
}
.next:hover {
  background-color: white;
  border-radius: 12px 0px 0px 12px;
  opacity: 0.8;
}
/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  background-color:white;
  opacity:0.8;
  color:red;
  font-family: "Times New Roman", Times, serif;
  font-size: 26px;
  font-weight:bold;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: 45%;
  border-radius: 15px;
  position: absolute;
  top: 0;
}
@media only screen and (max-width:1050px) {
.numbertext {
	font-size: 13px;
	margin-left: 35%;
}
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 12s;
  animation-name: fade;
  animation-duration: 12s;
}

@-webkit-keyframes fade {
  from {opacity: .1} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .1} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
.grid-item4 {
  grid-column-start: 1;
  grid-column-end:7;
  font-size:28px;
  text-align:center;
  margin-top: 5px;
  padding:7px;
  background-color:lightgray;
  border-style:inset;
}
@media only screen and (max-width:1000px) {
.grid-item4 {
  font-size:12px;
}
}
