body {
  font-size: 18px;
  background-color:rgba(182,145,197,0.5);  
  color: #653d74;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.header {
  color: #f9fbfc;
  text-align: center;
  font-family: "Style Script", cursive;
  font-weight: normal;
  font-size: larger;
  border: solid;
  background-image: url(images/starrysky.jpg);
}

h3 {
  font-weight: normal;
}

/*Nav Bar*/
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #354054;
  }
  
  li {
    float: left;
  }
  
  li a, .dropbtn {
    display: inline-block;
    color: #f9fbfc;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover, .dropdown:hover .dropbtn {
    background-color: rgba(213, 181, 110, 0.7);
  }
  
  li.dropdown {
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(213, 181, 110, 0.5);
    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:rgba(213, 181, 110, 0.4);
    ;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

h2 {
  font-size: 30px;
}

.pic-credits {
  font-style: italic;
  font-size: 14px;
}

/*CAST PAGE*/
/*cast cards*/
  .cast-gallery{
    display:flex;
    margin: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
  }

  .cast-cards{
    background-color: #294369;
    display: flex;
    border: solid;
    border-color: black;
    border-width: 3px;
    border-radius: 10px;
    padding: 10px;
    margin: 1%;
    flex-direction: column;
    height: 510px;
    width: 250px;
  }

  .cast-img {
    display: flex;
    width: 100%;
    justify-content: center;
    align-self: center;
    padding: 0%;
    border-radius: 10px;
    border: solid #f9fbfc;
    margin: 2%;
  }

  .cast-head {
    color: #f9fbfc;
    text-align: center;
    font-weight: bold;
    padding: 0%;
    margin-top: 0%;
    margin-bottom: 2%;
  }

  .cast-text{
    text-align: center;
    margin-top: 0%;
    padding-top: 0%;
    color: #f9fbfc;
  }

/*SOUNDTRACK PAGE*/
  .song-info {
    font-size: 14px;
  }

  /*Animated Button*/
  .button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #f9fbfc;
    background-color: #294369;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  
  .button:hover {background-color: #294369}
  
  .button:active {
    background-color: #294369;
    box-shadow: 0 5px #888;
    transform: translateY(4px);
  }

/*FILMCREW PAGE*/
.crew {
  display: flex;
  flex-direction: row;
}

  .crew-img {
    padding: 1px;
    border-radius: 5px;
    border: dotted #354054;
    height: 250px;
    float: right;
    margin: 0% 2%;
  }
