/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("/background try.jpg");
  background-color: black;
  color: white;
  font-family: verdana;
  text-align: center;
  margin-top: 500px;
  margin: 0;
}
h2 {
    font-size: 3em;
    margin: 20px;
    padding: 40px;
    border-style: outset;
    border-width: 3px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-color: white;
    background-color: black;
    margin-left: 200px;
    margin-right: 200px;
}
h3 {
    font-size: 2em;
    margin: 20px;
    padding: 40px;
    color: white;
    background-color: black;
    margin-left: 20px;
    margin-right: 20px;
}
h4 {
    font-size: 2em;
    line-height: 0.5;
    /*font-family: helvetica;*/
  }
/*container {
  width: 300px;
  height: 200px;
  border: 1px solid black;
  overflow: hidden;
} */
.layout {
  width: 100%;
  
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.container img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.container2 img {
  width: 73%;
  height: 100%;
  object-fit: cover;
}
.container3 img {
  width: 30%;
  height: 100%;
  object-fit: cover;
}
.fixed-header {
    position: fixed; /* Fixes the element relative to the viewport */
    top: 0;          /* Positions it at the very top of the viewport */
    left: 0;         /* Positions it at the very left (optional, ensures it spans the width) */
    width: 100%;     /* Ensures the element spans the full width of the viewport */
    padding: 10px;   /* Optional: adds some space inside the element */
    z-index: 100;    /* Optional: ensures it stays on top of other elements */
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie-theater {
  padding: 50px;
  padding-top: 0;
  }