body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo img {
  height: 65px;
}

.signin {
  background-color: #e50914;
  border: none;
  padding: 8px 16px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.hero {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.get-started {
  background-color: #e50914;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.row {
  padding: 20px;
  margin-top: 50px; /* bump up if needed */
}


.row h2 {
  margin-bottom: 20px;
}

.thumbnails {
  display: flex;
  overflow-x: auto;
}

.thumbnails img {
  width: 200px;
  margin-right: 10px;
  border-radius: 4px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.thumbnails img:hover {
  transform: scale(1.08);
}

footer {
  background-color: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 40px;
}
