@charset "utf-8";
/* Body Styles */
HTML {
background-image: url(https://i.pinimg.com/originals/4a/96/e6/4a96e602750b8ef669a77565becf3939.gif);
}

body {
font-family: "Times New Roman", Times, serif;
font-style: normal;
}

h1 {
  font-size: 40px;
  font-family: Helvetica;
  font-style: italic;
  text-align: center;
  font-weight: bold;
  color: gold;
  background-color: #111111;
  margin-left: 100px;
  margin-right: 100px;
  margin-top:60px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 5px;
  padding-left: 5px;
  height: auto;
  max-width: 100%;
}

h2 {
  font-size: 30px;
  Background-color:black;
  color: rgb(218,165,32);
  text-align: center;
  padding-top:10px;
  padding-bottom:10px;
}

h3 {
font-size: 20px;
color: rgb(218,165,32);
margin-left: 10px;
}

h4 {
font-size: 20px;
color: rgb(218,165,32);
margin-left: 10px;
}

h6{

background-color: #111111; 
text-align:center;
}
h12 {
margin-right: 10px;
padding-top: 5px;
padding-bottom: 5px;
}
p {
  font-size: 16px;
  margin-left:30px;
}
aside {
font-size: 16px;
margin-left:30px;
margin-right:40px;
padding-left: 15px;
padding-top:15px;
padding-bottom:15px;
background-color:white;

}
article {
display: block;
background-color:black;
color:white;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  color:white;
}
th {
  background-color: black;
  color: white;
}
tr:hover {background-color:rgb(218,165,32);
}

span {
color: red;
font-size: 14px;
}

nav{
width:100%;
display: flex;
justify-content: space-around;
align-items: center;
min-height: 2vh;
background-color: rgb(218,165,32);
}

nav>ul {
  list-style-type: none;
  margin:0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(218,165,32);
  font-size: 14px;
}
.logo{
color: white;
text-transform: uppercase;
letter-spacing: 5px;
}

.nav-links{
color:white;
display: flex;
justify-content: space-around;
width: 50%;
}

.nav-links a{
color: white;
}

li {
  float: left;
  color:white;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
.burger{
display: none;
cursor: pointer;
}

.burger div{
width: 25px;
height: 3px;
margin: 5px;
background-color:white;
}

@media screen and (max-width: 1125px) {
	body{
		overflow-x: hidden;
	}

.nav-links{
		font-size: 24px;
		position: absolute;
		right: 0px;
		height: 92vh;
		top:2vh;
		display: flex;
		flex-direction: column;
		align-items:center;
		width: 50%;
		transform: translateX(100%);
		transition: transform 0.5s ease-in;
	}
	.nav-links li {
	opacity: 1;
	}
	.burger{
	display: block;
	}
}

.nav-active{
transform: translatex(0%);
}


li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

body > header > nav ul li a:hover, .dropdown:hover .dropbtn {
  background-color: #282828;
}

li.dropdown {
  display: inline-block;
}

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

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: #f1f1f1}

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



li a:hover {
  background-color: rgb(230,170,32);
}

header > nav {
position : fixed;
text-align : center;
top : 0;
margin-left:-10px;
width : 100%;
font-size : 0.75rem;
opacity: .8;
}

/* this portion sizes, colors, and shapes the box and images within the boxes.*/

.grid-box {
    display: grid;
    grid-auto-rows: minmax(50px, auto);           
    column-gap: 15px;
    row-gap: 5px;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.grid-img {
	width: 100%;
	height: auto;
	object-fit: contain;
}
 
    
.grid-box > div {
    border: 2px solid rgb(179, 219, 244);
    border-radius: 15px;
    padding: 10px;
	background-color: #111111;
	color: #DDDDDD;
}

/* this portion sizes the columns */

.b1 {
	grid-column: 1 / 2;
	grid-row: 1 / 2;
}

.b2 {
	grid-column: 1 / 3;
	grid-row: 2 / 3;
}

.b3 {
	grid-column: 1 / 2;
	grid-row: 3 / 4;
}

.b4 {
	grid-column: 1 / 3;
	grid-row: 4 / 5;
}


.b6 {
	grid-column: 1 / 3;
	grid-row: 7 / 8;
}

.b7 {
	grid-column: 2 / 4;
	grid-row: 1 / 2;
}

.b8 {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
}

.b9 {
	grid-column: 2 / 4;
	grid-row: 3 / 4;
}


.b10 {
	grid-column: 3 / 4;
	grid-row: 4 / 5;
}

.b11 {
	grid-column: 2 / 4;
	grid-row: 5 / 6;
}

.hover {
  Color: White;
  background-color: black;
  padding-top: 10px;
  padding-bottom:10px;
  display: none;
}
  
span:hover + .hover {
  display: block;
  overflow: auto;
}

footer{
width:100% ;
}

footer > p {
padding-top : 10px;
padding-bottom : 15px;
background-color : red;
text-align : center;
}