/* Dropdown Button */
.dropbtn {
  background-color: #740001;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  background-color:#D3A625;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #D3A625;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color:#000000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  background-color:#D3A625;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #740001;}

/* 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:#740001;}
.head{
    background-color:#D3A625;
    height:100px;
    width:100%;
    padding:10px;
    margin:5px;
}
h1{
    text-align:center;
    font-family: 'Harry Potter', sans-serif;
    font-size:50px;
    color:#740001;
}
body{
    background-color:#5D5D5D;
}
.main{
    background-color:#D3A625;
    padding:16px;
    font-family: 'IFC RAILROAD', sans-serif;
    color:#000000;
}
div.scroll-container {
  background-color: #D3A625;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}

div.scroll-container img {
  padding: 10px;
}