* {
  margin: 0;
  border: 0;
  box-sizing: border-box;
}
body {
  background-color: black;
  display: flex;
  color: white;
  flex-direction: column;
}
.navbar {
  display: flex;
  color: red;
  justify-content: space-between;
  position: absolute;
  flex-direction: row;
  z-index: 10;
  width: 100%;
  padding: 50px;
  font-size: larger;
}
.navbar h1{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.navbar div{
  display: flex;
  flex-direction: row;
}
.navbar .btn {
  background-color: red;
  color: white;
  width: 100px;
}
.navbar button a{
  text-decoration: none;
  color:white;
}
.overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.subscribe {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  position: relative;
  font-size: larger;
  background: url("photos/moviesCollage.jpg") center/cover no-repeat;
  border-bottom: 5px solid red;
}
.subscribe h1,
.subscribe p,
.subscribe input,
.subscribe button {
  position: relative;
  z-index: 2;
}
.content {
  display: flex;
  flex-direction: column;
  gap: 20px; 
  align-items: center;
}
.subSubscribe button,
.watch button {
  height: 50px;
  width: 250px;
  border-radius: 10px;
  text-align: center;
}
.subSubscribe .btn a{ 
  color: white;
  text-decoration: none;
}
.subSubscribe input,
.watch input {
  height: 50px;
  width: 250px;
  border-radius: 10px;
  text-align: center;
  background: transparent;
  border: 1px solid white;
}
.btn {
  background-color: red;
  color: white;
  border-radius: 15px;
}
.trending {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px;
}
.topic {
  text-align: center;
}
.trend {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
}
.join {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 5px;
  margin: 10px;
}
.card {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(111deg, #1c28d4, #3b2e79);
  flex: 1;
  padding: 10px;
  border-radius: 15px;
}
.FAQ {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 80px;
font-size: larger;
}
.Ques {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(90, 89, 89);
  border: 1px solid white;
  color: white;
  height: 40px;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  font-size:larger;
}

.watch {
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 20px;
}

.privacy {
  margin: 30px;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.list {
  gap: 50px;
  display: flex;
}
.list li {
  list-style: none;
}
.privacy a {
  color: white;
}
.privacy a:hover {
  color: red;
}
.lang {
  display: flex;
  padding: 2px;

  text-align: center;
  font-size: medium;
  border-radius: 5px;
  background: transparent;
  color:orangered ;
  border: 1px solid red;
  margin: 10px;
}
