*, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
::selection {
  background: #e255b5;
  color: white;
}

.photo_poster {
  background-image: url('../photos/barbie_poster4.jpeg');
  ;
  height: 620px;
  margin-top: -100px;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

/* intro */
.text {
  margin: auto;
  padding: 10% 0% 10% 0%;
  width: 80%;
}

/* cast-scroll */
.cast {
  background-color: #69d1fe;
  padding: 5% 5% 5% 5%;
}

.cast p {
  text-align: center;
}

.cast h2 {
  text-align: center;
  font-size: 2.2em;
  font-weight: 500;
  color: white;
  text-shadow: 2px 2px 5px rgb(185, 184, 184);
}

.cast-container {
  overflow-x: auto;
}

.cast-scroll img {
  width: 98%;

  margin-right: 10px;
  border-radius: 20px;
  border: 2px solid rgb(112, 80, 103);
}

.cast-scroll {
  display: flex;
  flex-wrap: nowrap;
}

.background-info img {
  width: 100%;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}


.photo {
  width: 100%;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

header .caption {
  margin-left: 2%;
}


/* for screens at least 650 px wide */
@media screen and (min-width:650px) {

  .column_container {
    margin: auto;
    margin-top: 0;
    margin-bottom: 0;
    width: 70%;
  }

  .photo_poster {
    background-image: url('../photos/barbie_poster.jpeg');

    height: 900px;
    width: 100%;
  }

  .intro {
    width: 80%;
  }

  .text {
    font-size: larger;
  }

  .background-info {
    width: 80%;
  }

  .cast-scroll img {
    width: 400px;
  }

  .cast h2 {
    font-size: 60px;
    
  }


}

@media screen and (min-width:950px) {

  .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    p {
      margin-right: 15px;
    }
  }
}


footer{
  display: block;
  background-color: black;
  color: grey;
  padding: 4% 0% 4% 0%;
  text-align: center;
  a {
    color:  #e255b5; 
    text-decoration: none;

  }
  a:hover {
    color:  #e69dcf; 
  }
}

