body {
  margin: 0;
  padding: 0;
  display: block;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  /* To enhance the red curtain look */
}
.poster {

  max-width: 800px;
  margin: 20px auto;
  background: linear-gradient(to bottom, #f5f5f5, #ffffff);
  /* padding: 20px; */
  /* color: white; */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.curtain {
  width: 100%;
  /* margin: 20px auto; */
  background: linear-gradient(90deg, #900101 5%, #bb0101 15%, #900101 25%, #bb0101 35%, #900101 85%);
  background-size: 200px;
  padding: 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.curtain h1,
.curtain h2,
.curtain h3,
.curtain h4 {
  text-align: center;
  margin: 10px 0;
}

.curtain h1 {
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.curtain h2 {
  color: #ffff00;
  font-size: 24px;
  margin-bottom: 20px
}

.curtain h3 {
  color: #ffffff;
  font-size: 20px;
}

.curtain h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: lighter;
}


.blue-curtain {
  width: 100%;
  margin: 0px auto;
  background: #00028b;
  background-size: 200px;
  padding-left: 20px;
  padding-right: 20px;

}

.hexagon {
  width: 200px;
  /* Adjust size */
  height: auto;
  clip-path: polygon(50% 0%,
      100% 25%,
      100% 75%,
      50% 100%,
      0% 75%,
      0% 25%);
  overflow: hidden;
  /* box-shadow: 0 0 20px rgba(255, 255, 0, 0.8); glow shadow effect */
}

.hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oval {
  width: 200px;
  /* Width of the oval */
  height: 100px;
  /* Height of the oval */
  background-color: red;
  /* Background color */
  border-radius: 50%;
  /* Makes it an oval */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fbff00;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.container {
  display: block;
  width: 100%;
  height: auto;
  /* Optional: Set a height for demonstration */
}

.child {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  /* Ensure child divs fill the container's height */
}

.child-a {
  /* flex: 0 0 40%; */
  /* Grow: 0, Shrink: 0, Basis: 40% */
  background-color: #00028b;
}

.child-b {
  /* flex: 0 0 15%; */
  /* Grow: 0, Shrink: 0, Basis: 20% */
  background-color: #00028b;
}

.child-c {
  /* flex: 0 0 30%; */
  /* Grow: 0, Shrink: 0, Basis: 40% */
  background-color: #00028b;
  color: #fbff00;
}


.shadow-box {
  width: 300px;
  height: 200px;
  background-color: #ffffff;
  border-radius: 10px;
  /* Optional rounded corners */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  color: #333;
}

.info {
  width: 100%;
  margin: 0px auto;
  background: #f5f5f5;
  background-size: 200px;
  padding: 20px;
}

.info h1 {
  text-align: left;
  margin: 10px 0;
  color: #C43331;
  font-size: 25px;
  font-weight: bold;
}

.info p{
  margin: 10px 0;
  color: yellow;
  font-size: 20px;
  font-weight: bold;
}

.info a {
  text-decoration:underline;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: #000000;
  border-radius: 8px;
  /* background-color: #f3f3f3; */
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  /* transition: background-color 0.3s ease, transform 0.3s ease; */
  /* margin-bottom: 20px; */
}

.info img {
  width: 24px;
  height: 24px;
}

.custom-list {
  list-style: none;
  /* Remove default bullets */
  padding: 0;
}

.custom-list li {
  position: relative;
  padding-left: 30px;
  /* Space for the custom bullet */
  margin-bottom: 8px;
  text-align: left;
  color: #6D3C3E;
}

.custom-list li::before {
  content: "•";
  /* Custom bullet symbol */
  color: #6D3C3E; 
  /* Bullet color */
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

hr {
  border: 0;
  /* Remove the default border */
  height: 2px;
  /* Set the height of the line */
  background-color: #561957;
  /* Set the color of the line */
  width: 100%;
  /* Set the width of the line */

}



.gradient-list {
  list-style: none;
  padding: 0;
}

.gradient-list li {
  position: relative;
  padding-left: 30px; /* Space for custom bullet */
  margin-bottom: 10px;
  text-align: left;
  color: #323388;
}

.gradient-list li::before {
  content: "";
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  /* Bullet size */
  height: 15px;
  border-radius: 50%;
  /* Makes it circular */
  background: linear-gradient(45deg, #D5147A, #8E1C70, #33136E);
  /* Gradient bullet */
}

.info .contacts {
  background: #d50000;
  padding: 20px;
  border-radius: 8px;
  color: white;
  text-align: center;
}


.info .footer {

  margin-top: 20px;
  text-align: center;
  font-size: 15px;
  color: #000; 
  /* border-bottom-left-radius: 8px; 
  border-bottom-right-radius: 8px; */
}

@keyframes wave {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 100%;
  }
}