@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap");

body {
  font-family: "Source Sans Pro", sans-serif;
  background-color: #f0f8ff;
}

.navbar {
  background-color: rgba(216, 223, 230, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: (20px);
  z-index: 98;
}

.carousel {
  margin-top: 3.5rem;
}

.movie {
  height: 550px;
  width: 300px;
  overflow: hidden;
}

.movie-poster {
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-window {
  max-width: 450px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: all 0.3s;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}
