/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body  {
  background: #f1f1f1; 
}

.header {
  padding: 20px;
  text-align: center;
  letter-spacing: 10px;
  line-height: 75%;
  background: black;
  color: white;
  font-size: 20px;
  font-family: helvetica;
  overflow: auto;
  white-space: nowrap;
}

ul.navigation {
  list-style-type: none;
  margin: 5;
  padding: 0;
  background-color: #333333;
  display: flex;
  justify-content: center;
  font-family: helvetica;
  letter-spacing: 5px;
  overflow: auto;
  white-space: nowrap;
}

ul.navigation li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  
}

ul.navigation li a:hover{
  background-color: red;
  color: white;
}

/* navigation container */
.navigation {
  list-style-type: none;
  margin: 5;
  padding: 0;
  background-color: #333333;
  display: flex;
  justify-content: center;
  font-family: helvetica;
  letter-spacing: 5px;
  overflow: auto;
  white-space: nowrap;
}

/* Links inside the navigation */
.navigation a {
  display: block;
  color: black;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
  letter-spacing: 5px;
}

/* Add a red background color to navbar links on hover */
.navigation a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

/* Dropdown content (hidden by default) */
.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;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  background: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.gallery-scroll {
  background-color: #d5d5d5;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.gallery-scroll img {
  object-fit: contain;
  border-style: solid;
  border-width: 5px;
  border-color: #333333;
  height: 650px;
  margin: 0px 100px 0px;
  padding: 0px; 
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}
