
img {
    margin-left:500px;
}
    h1 {
        color: indigo
    }
    h2 {
        color: red
}
    p {
        color: red
    }
 button {
    background-color: gray
    
 }
 
 p {
    text-align: center;
 }

 .center {
    margin: auto 50%;
 }
 .section {
  border: 2px solid transparent;
  padding: 10px;
  margin: 10px;
  display: inline-block;
}

.movie-card.inactive {
  opacity: 0.5;
}

.movie-card.active {
  border-color: red;
  opacity: 1;
}

.poster-wrapper {
  position: relative;
  display: inline-block;
}

.favorite-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background: gold;
  color: black;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: bold;
}

.hidden {
  display: none;
}

.lightsOff {
  background: black;
  color: white;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.overlay-content {
  background: white;
  padding: 20px;
  text-align: center;
}