/* 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." */
html {
  background-image: url("stars.gif");
}

.filterDiv {
  display: none;
}

.Gallery img {
  width: 50%;
}

.show {
  display: block;
}

body {
  background-color: #C8C5A2;
  font-family: 'Eurostile Regular', Verdana;
  margin: 0;
}

h1 {
  font-size: 400%;
  text-align: left;
  padding-top: 30px;
  color: white;
}

p {
  color: #383531;
}

/* Sidebar */
.sidebar {
  padding: 0;
  width: 205px;
  background-color: #857f69;
  background-size: 425px;
  position: fixed;
  height: 100%;
  overflow: auto;
  font-size: 110%;
  margin: 0;
}

/* Sidebar links */
.sidebar a {
  text-decoration: none;
  display: flex;
  text-align: center;
  color: #c8c5a2;
  /* navbar text color */
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px;
  margin: 8px;
}

/* Links on mouse-over */
.sidebar a:hover:not(.active) {
  background-color: #4c4944;
  color: #c8c5a2;
}

button {
  color: #c8c5a2;
  text-transform: uppercase;
  padding: 15px;
  margin: 0px;
  background: #857f69;
  border: none;
  font-family: 'Eurostile Regular';
  font-size: 18px;
}

.main {
  background-color: #c8c5a2;
  margin-left: 205px;
  padding: 5px 25px;
  min-height: 100vh;
  text-align: center;
}

.head {
  background-image: url("splash_bg.png");
  height: 100px;
  background-position-y: 25%;
  position: relative;
  top: -35px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.sources {
  border: solid #857f69 5px;
  padding-inline: 15px;
  width: 200px;
  margin: auto;
}

.crew img {
  width: 200px;
  height: auto;
}

.crew-member {
  background-color: wheat;
  width: fit-content;
  margin: 2px 2px;
}

.contain {
  margin: auto;
  background: black;
  padding: 40px;
  width: 75%;
  display: flex;
  justify-content: center;
}

.text {
  width: 450px;
  padding-inline: 50px 30px;
  text-align: left;
}

.image {
  width: 345px;
  height: 400px;
  background: white;
  margin: 0;
}

    @font-face {
    font-family: 'Eurostile Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Eurostile Regular'), url('eurostile.woff') format('woff');
    }