html {
  height: 100%;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	color: white;
	background-color: #222;
	background-image: url("images/Ronin/front.png");
	background-size: 100%;
    background-attachment: fixed;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px !important;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 20px 16px !important;
  text-decoration: none;
  display: block;
  text-align: left !important;
}

.dropdown-content a:hover {
  background-color: white !important;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.nav {
  z-index: 1;
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: black;
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: orange solid 4px;
}
.nav li {
  float: left;
  font-size: 15px;
}
.nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 40px 40px;
  text-decoration: none;
}
.nav a:link {
  color: orange;
  text-decoration: none;
}
.active {
  color: white !important;
}

.nav a:visited {
  color: orange;
  text-decoration: none;
}

.nav a:hover {
  color: #e67e00 !important;
  background-color: transparent;
}

.nav a:active {
  color: #e67e00;
  background-color: transparent;
}
.content {
	padding:20px;
	margin-top:80px;
	text-align: center;
}
footer {
  background-color: black;
  width: 100%;
  text-align: center;
  padding: 20px 0px;
  border-top: orange solid 4px;
  margin-top: auto;
}
/* Social Icons */
.fa {
  padding: 20px;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 60%;
  color: white;
  background-color: #222;
}
/* GRID */
/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 20%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 80%;
  padding-left: 20px;
}

/* Add a card effect for articles */
.card {
	background-color: rgba(0, 0, 0, 0.8);
	padding: 20px;
	margin-top: 10px;
	text-align: left;
	border-radius: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.row {
    width: 80%;
	margin: auto;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

/* Image gallery */
/* Position the image container (needed to position the left and right arrows) */
.galleryContainer {
	position: relative;
    width: 50%;
	margin: auto;
}

/* 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;
}
/* Position the "next button" to the right */
.prev {
  left: 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: rgba(0, 0, 0, 0.8);
  padding: 2px 16px;
  color: white;
}

.rowThumbnail:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.columnThumbnail {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

h1, h2, h3, h4 {
	color: orange;
}
h1 {
	background-color: rgba(0, 0, 0, 0.8);
}

a:link {
  color: white;
  text-decoration: none;
}

a:visited {
  color: white;
  text-decoration: none;
}

a:hover {
  color: #e67e00 !important;
  background-color: transparent;
}

a:active {
  color: #e67e00;
  background-color: transparent;
}