* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Baloo Bhai 2", Arial, sans-serif;
  max-width: 480px;
  margin: 0 auto;
  height: 150vh;
  overflow-x: hidden;
  background: linear-gradient(to bottom, #ffc94a 6%, #ffeec7 75%, #abaaaa 100%);
  background-repeat: no-repeat;
}

h4 {
  color: white;
  /* margin-top: 12px; */
  /* margin-left: 5px; */
}

.banner-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.banner-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.banner-inner img {
  width: 100%;
  border-radius: 10px;
  min-width: 100%;
}

.dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active {
  background-color: #717171;
}
/* @keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-33.33%); }
    66% { transform: translateX(-66.66%); }
    100% { transform: translateX(0); }
} */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.banner img {
  align-content: center;
  width: 100%;
  max-width: 480px;
  border: 2px solid white;
  border-radius: 10px;
}

.header {
  width: 100%;
  display: flex;
  text-align: left;
  align-items: center;
  margin-bottom: 20px;
}

.greeting {
  margin-bottom: 10px;
}

p {
  color: white;
  font-size: 23px;
}

h3 {
  color: white;
  font-size: 30px;
}
h2 {
  color: white;
}

h1 {
  color: white;
  font-size: 50px;
}

.now-playing {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  /* background-color: #fff3d6; Background color for the Now Playing section */
  padding: 20px;
  border-radius: 10px;
}

.now-playing h2 {
  margin-bottom: 20px;
  color: #4b4b4b;
}

.carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.movie-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.movie {
  text-align: center;
  /* background-color: #ffffff; Background color for each movie card */
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.movie img {
  width: 200px;
  border-radius: 10px;
}

.half-width {
  width: 50%;
}

.full-width {
  width: 100%;
}

.movie-title {
  margin: 10px 0 5px 0;
  font-weight: bold;
  color: #4b4b4b;
}

.movie-rating {
  color: #555;
}

.movie-rating span {
  color: gold;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-around;
  position: fixed;
  bottom: 0;
  background-color: #ffffff; /* Background color for the navbar */
  border-top: 1px solid #ccc;
  padding: 10px 0;
}

.nav-button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #4b4b4b;
}

.nav-button:focus {
  outline: none;
}

.nav-button:hover {
  color: #f90;
}
