body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #000000;
  padding: 20px;
}

.navbar {
  background: #000;
  color: #ffffff;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
}

.nav-links a:hover {
  text-decoration: underline;
}


.movie-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px;
}

.movie-card {
  background: #222;
  padding: 10px;
  border-radius: 8px;
  width: 200px;
  text-align: center;
  color: gainsboro;
}

.movie-card img {
  width: 100%;
  height: 220px;
  border-radius: 5px;
}

a {
  color: blue;
  text-decoration: none;
}
