body
{
	margin: 20px;
  min-height: 100vh;
  width: 100%;
	font-family: 'Architects Daughter', cursive;
  background-color: dimgrey;

}
/* Style the header */
.header 
{
	margin: 0;
	display: inline;
	text-align: center;
	clear: both;
}	
/* Create three unequal columns that floats next to each other */
 .column 
{
  float: left;
  padding: 5px;
	height: auto;
}

/* Left and right column */
.column.side 
{
  width: 20%;
	background-color:rgba(62, 117, 161, 0.815) ;
	background-image: linear-gradient(to right, rgba(119, 180, 230, 0.815) , rgb(167, 217, 250));
	border: black 6px double;
	border-radius: 8px;
}
  
  /* Middle column */
.column.middle 
{
  width: 75%;
	height: auto;
	padding-right: 5px;
}
  
  /* Clear floats after the columns */
.row:after 
{
  content: "";
  display: table;
  clear: both;

} 

/* Navigation bar */
.topnav 
{
  overflow: hidden;
  background-color: #998585;
}

.topnav a 
{
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover 
{
  background-color: rgb(240, 237, 200);
  color: black;
}

.topnav a.active 
{
  background-color: #349ff7;
  color: white;
}

.topnav .search-container 
{
  float: right;
}

.topnav input[type=text] 
{
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
}

.topnav .search-container button 
{
  float: right;
  padding: 6px 10px;
  margin-top: 8px;
  margin-right: 16px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.topnav .search-container button:hover 
{
  background: #ccc;
}

@media screen and (max-width: 600px) 
{
  .topnav .search-container 
  {
    float: none;
  }

  .topnav a, .topnav input[type=text], .topnav .search-container button 
  {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
	}

  .topnav input[type=text] 
  {
    border: 1px solid #ccc;  
  }
}		

/* Forum links */
.forum
{
	list-style-type: square;
}

/* Website title */
.title 
{
	font-family: 'Comforter Brush', cursive;
	font-size: 82px;
	color: rgb(83, 177, 214);
	letter-spacing: 10px;
	text-align: center;
}

#myDIV 
{
	animation: mymove 5s infinite;
}
@keyframes mymove 
{
	50% {text-shadow: 4px 6px 9px black;}
}

.mySlides 
{
    display: none;
}

img 
{
    vertical-align: middle;
}

.container
{
  width: 75%;
  padding: 25px;
  border: 4px black inset;
  background-color: lightgrey;
}

/* Slideshow container */
.slideshow
{
  text-align:center;
  position: relative;
  max-width: 825px;
  height: 730px;
  margin: auto;
}
/* Caption text */
.text 
{
  color: #000000;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext 
{
  color: black;
  font-size: 18px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot 
{
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active 
{
  background-color: #717171;
}

/* Fading animation */
.fade 
{
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade 
{
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade 
{
  from {opacity: .4} 
  to {opacity: 1}
}

/* Mobile styles: 0px to 480px 
@media only screen and (max-width: 480px) 
{
  .text {font-size: 11px}
}
Tablet styles: 481px and greater 
@media only screen and (max-width: 481px) 
{
  .text {font-size: 11px}
}
Desktop styles: 769px and greater 
@media only screen and (max-width: px) 
{
  .text {font-size: 11px}
}*/

/* Body attributes */

h2
{
	text-align: justify;
	display: block;
	font-size: 20px;
	font-family: 'Architects Daughter', cursive;
	font-weight: bold;
	color: #000000;
	letter-spacing: 3px;
}

h3
{
	text-align: center;
	font-size: 20px;
	font-family: 'Shadows Into Light', cursive;
	font-weight: bold;
	color: black;
	letter-spacing: 3px;
}

p
{
	text-align: justify;
	font-size: 16px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	color: black;
	letter-spacing: 3px;
}

footer
{
  padding: 5px;
  justify-content: center;
  font-size: 17px;
	font-family: 'Shadows Into Light', cursive;
	color: black;
	letter-spacing: 3px;
}