@charset "utf-8";
/* CSS Document */

.autoscroll {
    overflow: auto;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

body {
	margin: 2px;
	font-family: "Lato", sans-serif;
	background-image: url(diamondjetspot.png);
}
#wrap header {
    background-color: rgba(72,130,233,0.30);
    color: white;
    padding: 20px;
    font-size: 34px;
	height: 150px;
}
#wrap main {
    color: rgba(95,72,3,0.88);
    margin: 0px;
    padding: 40px;
    font-size: 34px;
    text-align: center;
    text-decoration: underline;
}
#wrap footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(72,130,233,0.30);
    color: white;
    padding: 2px;
    font-size: 16px;
}
.sidenav {
    width: 100px;
    position: fixed;
    z-index: 1;
    top: 10px;
    left: 10px;
    background: rgba(229,229,229,0.50);
    overflow-x: hidden;
    padding: 0;
}
.sidenav a {
    padding: 6px;
    text-decoration: none;
    font-size: 25px;
    color: #2196F3;
    display: block;
}
.sidenav a:hover {
    color: #064579;
}
.mainheader {
    color: black;
    margin-left: 140px; /* Same width as the sidebar + left position in px */
    font-size: 18px; /* Increased text to enable scrolling */
    padding: 0px 10px;
}

@media screen and (max-height: 450px) {
.sidenav {
    padding-top: 15px;
}
.sidenav a {
    font-size: 18px;
}
}
.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    grid-gap: 10px;
    background-color: rgba(33,150,243,0.1);
    padding: 20px;
    margin-left: 0px;
}
.grid-container > div {
    background-color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 10px;
    font-size: 30px;
}
/* Dropdown Button */
.dropbtn {
	background-color: rgba(255,255,255,0.00);
  color: white;
  padding: 2px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position:relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(255,255,255,1.0);
  min-width:10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 20px 40px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: rgba(107,168,241,0.60);}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: rgba(255,255,255,0.00);}