 body{
   background-color: black;
    color: white;
    margin: 0px;
    padding:0px;
}

nav {
     display: flex; /*diplays side by side */
    justify-content: space-between; 
    align-items: center;
    margin: auto;
    position: absolute;
    top: 0;
    width: 85%;
    height:120px;
    z-index: 10;
}

.main nav #Lang{
    width:150px;
    height:40px;
    background-color: black;
    color:white;
    margin:10px;
    border-radius:5px;
    /* font-weight:bold;  */
    font-family:sans-serif;
    font-size:25px;
    padding:5px;
}


.main nav #sign-in{
    background-color: red;
    color:white;
    font-weight:bold; 
    font-family:sans-serif;
    font-size:larger;
    width:100px;
    height:40px;
    margin:10px;
    border-radius: 6px;
}

/* Responsive fix for small screens */
@media (max-width: 600px) {
    .main nav {
        flex-direction: column;
        width: 100%;
        position: static;
    }
    .main nav #sign-in {
        width: 90%;
        margin: 10px auto;
        font-size: 18px;
    }
}

.main img{
    width: 250px;
    height: 200px;
    margin-top: 10px;
    margin-left:17px;
}

.main {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("bg.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.container{
    text-align: center;
    width: 40%;
      margin: 40px auto;
    font-size:45px;
    font-weight: bold;
    font-family: sans-serif;
    z-index: 10; 
}


.container > p{
    font-size: 20px;;
  font-weight: 100;
}

.container #email{
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
    width: 399px;
    height:50px;
    margin: 10px auto;
    font-size: 23px;
}

.container #submit{
    background-color: red;
    color: white;
    box-sizing: border-box;
    padding:0px;
    margin:0px;
    border: none;
    border-radius: 5px;
    width: 25%;
    height:70px;
    font-size: 23px;
    font-weight: 500;
    cursor: pointer;
}


/*---------------------------- Page two ------------------------------ */


.first {
    display: flex;
    justify-content: space-around;
    max-width: 70vw;
    margin: auto;
    color: white;
    align-items: flex-start;
    padding-top: 10px;
}

.TV{
    position: relative;
    left: 270px;
    display:flex;

}

.TV img{
    width: 40vw;
    height: 30vw;
    margin-top: 18px;
    margin-left: -43px;
    position: relative;
    z-index: 10;

}

.TV video{

    position: absolute;
    top: 64px;
    z-index: 999;
    left: -1vw;
    margin: 80px;
    width: 596px;
    height: 325px;
}

.head2{
    padding: 20px;
    margin-top: 90px;
    margin-left: -148px;
    font-size:250%;
    width: 45%;

}

.Stranger img{
    position: relative;
    top: -7px;
    left: 10px;
    right: 10px;
    width: 1000px;
    height: 850px;
    
}

.sec{
    display: flex;
    justify-content: space-between;
}

.right{
    position: relative;
    top: 250px;
    right: 200px;
    font-size:250%;
    width: 40%;
    height: 25%;
    padding:0;
}

.faq{
    padding:20px;
    margin-bottom:30px;
}

.faq h1{
    text-align: center;
    font-size:3em;
}

.faqbox:hover {
    background-color: #414141;
    color: white;
}

.faqbox {
    display: flex;
    text-align: left;
    padding: 1px;
    padding-left: 21px;
    margin-bottom: 20px;
    font-size:150%;
    background-color: #303030;
    color: white;
    position: relative;
    left: 10%;
    right: 10%;
    width:80%;
}

.faqbox svg {
    filter: invert(1);
    position:absolute;
    right: 45px;
    margin-left: 350px;
    margin-top: 35px;
    margin-right: 0px;
    cursor: pointer;
}

footer {
  max-width: 100%;
  display: flex;
  justify-content: center; 
  gap: 2rem;                
  flex-wrap: wrap;          
  padding: 3rem 1rem;
  background-color: #000;   
}

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

.footer-item a {
  font-size: 2rem;
  color: #6a6f6d;            
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-item a:hover {
  color: #505553;
  text-decoration: underline;
}

.questions {
  width: 100%;
  text-align:center;
  font-size: 2rem;
  color: #6a6f6d;
  margin-bottom: 1rem;
}

/* For reference of old netflix web pages*/
/* https://github.com/Susmita-Dey/Netflix-Clone?tab=readme-ov-file */
