
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fcf3f3;
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #0a0a0a;
}

.logo {
  font-size: 28px;
  color: #c01f27;
  font-weight: bold;
}


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


.hero {
  background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
  url('https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/f562aaf4-5dbb-4603-a32b-6ef6c2230136/dh0w8qv-9d8ee6b2-b41a-4681-ab9b-8a227560dc75.jpg/v1/fill/w_1280,h_720,q_75,strp/the_netflix_login_background__canada__2024___by_logofeveryt_dh0w8qv-fullview.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9NzIwIiwicGF0aCI6IlwvZlwvZjU2MmFhZjQtNWRiYi00NjAzLWEzMmItNmVmNmMyMjMwMTM2XC9kaDB3OHF2LTlkOGVlNmIyLWI0MWEtNDY4MS1hYjliLThhMjI3NTYwZGM3NS5qcGciLCJ3aWR0aCI6Ijw9MTI4MCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.LOYKSxIDqfPwWHR0SSJ-ugGQ6bECF0yO6Cmc0F26CQs');
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  ;
  
}

.hero-content {
  background-color: rgba(13, 9, 9, 0.6);
  padding: 40px;
  max-width: 600px;
  border-radius: 50px;
}

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

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

.hero input {
  padding: 10px;
  width: 60%;
  margin-right: 10px;
  border-radius: 4px;
  border: none;
}

.button {
  padding: 10px 20px;
  background-color: #e50914;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.movies {
  padding: 40px;
}

.movies h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

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

.movie-row img {
  width: 200px;
  border-radius: 5px;
  transition: transform 0.3s;
}

.movie-row img:hover {
  transform: scale(1.05);
}



.container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.card .text {
  max-width: 80%;
}

.card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: #ccc;
}

.icon {
  width: 48px;
  height: 48px;
}






.footer {
  background-color: #141414;
  color: #757575;
  padding: 40px 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  border-top: 1px solid #333;


}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.footer-question {
  margin-bottom: 30px;
  font-size: 16px;
  ;
  color: #e8dede;
}

.footer-question a {
  color: #f8eeee;
  text-decoration: underline;
  cursor: pointer;
;
}

.footer-question a:hover {
  color: #675253;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  min-width: 150px;
}

.footer-column a {
  color: #fff3f3;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-column a:hover {
  color: #b17070;
  text-decoration: underline;
}

.footer-copy {
  font-size: 13px;
  color: #444;
  text-align: left;
}
