body, html {
  height: 100%;
}

.logo {
    font-family: "TASA Orbiter", sans-serif;
    font-size: 70px;
}

.title {
    text-align: center;
}

.bg-image {
    background-image: url('/static/home-bg.png');
    background-color: #cccccc; /* Used if the image is unavailable */
    height: 100%; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */

    filter: blur(6px);
    -webkit-filter: blur(6px);
}

.submit_button {
    margin-left: 10px;
}

.search-container {
    padding-left: 25px;
    padding-right: 25px;

    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
}

@media (min-width: 1200px) {
  .search-container {
    margin-left: 10%;
    margin-right: 10%;
 }
}

.search-result-text {
    padding-left: 5px;
    padding-top: 10px;
}

ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


li {
  flex: 0 0 calc(50% - 10px);
  background: #f0f0f0;
  text-align: center;
  padding: 10px;
}

/* Small screens: 2 per row */
@media (min-width: 600px) {
  li {
    flex: 0 0 calc(33.333% - 10px);
  }
}

/* Medium screens: 4 per row */
@media (min-width: 992px) {
  li {
    flex: 0 0 calc(25% - 10px);
  }
}

/* Large screens: 5 per row */
@media (min-width: 1200px) {
  li {
    flex: 0 0 calc(20% - 10px);
  }
}

/* Extra large: 6 per row */
@media (min-width: 1600px) {
  li {
    flex: 0 0 calc(16.666% - 10px);
  }
}

.search-body {
    background-image: url(/static/bg.png); /* https://i.ibb.co/4032XpT/image-6.png */
    background-position: center; /* Center the image */
    background-repeat: repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

.footer-text {
    text-align: center;
}

.movie-title {
    text-align: center;
    margin-top: 10px;
}

.popup-warning {
    padding-left: 25px;
    padding-right: 25px;

    margin-top: 1%;
    margin-left: 2%;
    margin-right: 2%;
}

@media (min-width: 1200px) {
  .popup-warning {
    margin-left: 10%;
    margin-right: 10%;
 }
}

.movie-container {
    padding-left: 25px;
    padding-right: 25px;

    margin-top: 1%;
    margin-left: 2%;
    margin-right: 2%;
}

@media (min-width: 1200px) {
  .movie-container {
    margin-left: 10%;
    margin-right: 10%;
 }
}

/* Extra large: 6 per row */
@media (min-width: 1600px) {
  iframe {
    width: 90%;
    height: 800px;
  }
}

/* Large screens: 5 per row */
@media (min-width: 1200px) {
  iframe {
    width: 80%;
    height: 600px;
  }
}

.movie-info {
    margin-top: 2%;
    margin-bottom: 2%;
}