/* site.css */
*{
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}

body {
	font-family: 'Verdana'; sans-serif;
  background-color: #212121;
}


h1 {
  font-size: 12px;
  font-weight: normal;
}

h2 {
  font-size: 40px;
  font-weight: bold;
  color: #595959;
}

main {
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-align: center;
}

h4 {
  text-align: center;
}

h5 {
  font-size: 40px;
  color: white;
  font-weight: normal;
  text-align: center;
  font-family: 'Impact'; sans-serif;
  text-shadow: 5px 5px #212121;
  margin-bottom: 10px;
}

.hero-image {
	background-image: url("../img/bg2.jpg");
	background-color: #212121;
	height: auto;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}



.container{
	margin: 30px 20px 30px 20px;
	position: relative;

}

.container img{
	border-top: 5px solid #a7a7a7;
  border-right: 5px solid #a7a7a7;
  border-radius: 10px;
	display: block;
	margin-left: auto;
  margin-right: auto;
  width: 50%;

}

.container:hover img{
	transform: scale(1.02);
	border-top: 5px solid white;
  border-right: 5px solid white;

}

.banner{
  display: block;
  text-align: center;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;

}

.line_dg{
	width: 100%;
	height: 10px;
	display: block;
	background-color: #212121;
}
.line_lg{
	width: 100%;
	height: 5px;
	display: block;
	background-color: #a7a7a7;
}

ul {
  display: inline-block;
  list-style-type: none;
  overflow: hidden;
  background-color: #212121;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0px;
  width: 100%;
  height: 70px;
  border-bottom: 4px solid #a7a7a7;
  vertical-align: bottom;
  margin-bottom: 30px;

}

li {
  float: right;
  margin-top: 47px;
}

li a {
  display: inline;
  color: white;
  padding: 10px 5px 0px 5px;
  margin: 0px 10px 0px 10px;
  margin-right: 5%;
  font-weight: bold;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

li a:hover {
  color: #212121;
}

li a:hover:not(.active){
  background-color: #a7a7a7;
  border-top: 2px solid white;
  border-right: 2px solid white;

}

ul:first-child{
  padding-right: 10%;
}

.active {
  background-color: #a7a7a7;
  border-top: 2px solid white;
  border-right: 2px solid white;
}


.footer {
  text-align: center;
  color: white;
  margin-top: 5%;
	padding: 1%;
	background-color: #212121;
  border-top: 4px solid #595959;
}

/* Float four columns side by side */
.column {
  float: left;
  width: 50%;
  padding: 10px 10px;
}

/* Remove extra left and right margins, due to padding */
.row {margin: 0 15%;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #595959;
  color: white;
  border-top: 3px solid #a7a7a7;
  border-right: 3px solid #a7a7a7;
  border-radius: 5px;
}

.card:hover {
	transform: scale(1.02);
	background-color: #a7a7a7;
	color: #212121;
	border-top: 3px solid white;
  border-right: 3px solid white;
	border-radius: 5px;
}

.card img{
	border: 5px solid #a7a7a7;
	
}

.card:hover img{
	border: 5px solid #212121;
}



.column_merch {
  float: left;
  width: 33.33%;
  padding: 10px 10px;
}

/* Remove extra left and right margins, due to padding */
.row_merch {margin: 0 15%;}

/* Clear floats after the columns */
.row_merch:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
  .column_merch {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* Style the counter cards */
.card_merch {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #595959;
  color: white;
  border-top: 3px solid #a7a7a7;
  border-right: 3px solid #a7a7a7;
  border-radius: 5px;
}

.card_merch:hover {
  transform: scale(1.3);
  background-color: #a7a7a7;
  color: #212121;
  border-top: 3px solid white;
  border-right: 3px solid white;
  border-radius: 5px;

}

.card_merch:hover h2{
  text-shadow: 3px 3px #212121;
  color: white; 
}

.card_merch img{
  border: 5px solid #a7a7a7;
  
}

.card_merch:hover img{
  border: 5px solid #212121;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
}

.container:hover .overlay {
  opacity: 1;
}

#logo {
	height: 90%;
  vertical-align: center;
  display: inline-block;
  padding-top: 10px;
  margin-left: 10%;
  float: left;
}

.table {
  background-color: white;
  border-radius: 6px;
  margin-top: 5%;
  text-align: center;
  box-shadow: 7px 7px 10px #EAB10F;
}