*{
    margin:0;
    padding:0;
    font-family:'Poppins' sans-serif;
    box-sizing: border-box;
}
body{
    background:#000;
    color: #fff;
}
.header{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(./netflix-background.png);
    background-size: cover;
    background-position: center;
    padding: 0px 8%;
    position: relative;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}
.logo{
    width: 180px;
    cursor: pointer;
    height: 120px;
}
nav button{
    border: 0;
    outline: 0;
    background: #db0001;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
}
.header-content{
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    margin-top: 50px;
    transform: translate(-50%,-50%);
    
}
.header-content h1{
    font-size: 60px;
    font-weight: 600;
    /* max-width: 650px; */
    white-space: nowrap;
}
.header-content h3{
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 20px;
    font-size: 30px;
}
.header-content p{
  font-size: 22px; 
  font-weight: 400; 
}
