* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #000;
  color: #fff;
}

.hero {
  background: url('https://assets.nflxext.com/ffe/siteui/vlv3/42041b6d-5dfb-4cbd-8f1e-9c5b1b6027ce/51d1c0e1-b585-4c45-9ae4-1c318fb90b2f/IN-en-20240527-popsignuptwoweeks-perspective_alpha_website_small.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  padding: 20px 40px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 150px;
}

.btn {
  background-color: #e50914;
  color: white;
  padding: 8px 16px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.hero-content {
  text-align: center;
  margin-top: 150px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 20px;
}

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

.email-signup {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.email-signup input {
  padding: 12px;
  width: 300px;
  max-width: 90%;
  border: none;
  border-radius: 4px;
}

.btn-red {
  padding: 12px 20px;
  font-size: 1rem;
}
