* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
    background-color: black;
    color: white;
}


.backgroundContainer {
    background-image: url('https://assets.nflxext.com/ffe/siteui/vlv3/9f7e6c.jpg');
    height: 100vh;
    width: 100vh;
    background-size: cover;
    background-position: center;

}

.pinkoverlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
}

.contentContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    padding: 0 2rem;
}

.navContainer {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px;
}

.upperNavbarSection {
    /*border: 2px solid blue;*/
    display: flex;
    height: 50%;
}

.upperNavbarLeftSction {
    /*border: 2px solid red;*/
    width: 50%;

}

.netflixlogo {
    width: 120px;
}

.upperNavbarRightSection {
    /* border: 2px solid green;*/
    width: 50%;
}

.navBarButtonContainer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* border: 2px solid green;*/
    height: 100%;
}

.languageButton {
    display: flex;
    padding: 0.8rem 0.5rem;
    border-radius: 50px;
    background-color: transparent;
    /*border: 1px solid white;*/
    outline: none;
    color: white;
    font-size: 1rem;
}

.languageButton p {
    margin-left: 5px;
}

.signinButton {
    background-color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    outline: none;
    border: none;
    margin-left: 10%;
    font-size: 1rem;

}

.lowerNavbarSection {
    /*border: 2px solid red ;*/
    height: 50%;
    color: white;
    display: flex;
    justify-content: center;
}

.menuList {
    /* border: 2px solid green;*/
    width: 40%;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 2px 3px 14px rgba(0, 0, 0, 0.5);
    height: 7vh;

}

.menuList li {
    /*border: 2px solid red;*/
    height: 100%;
    display: flex;
    align-items: center;
}

.bannerSection {
    /* border: 2px solid red;*/
    height: 90vh;
    background-image: url('https://assets.nflxext.com/ffe/siteui/vlv3/9f7e6c.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
}

.overlay {
    height: 100%;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, .7), black);
    border-radius: 20px;
}

.bannerContainer {
    /*border: 2px solid red;*/
    height: 80%;
    width: 100%;
    position: absolute;
    bottom: 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.bannerContainer h2 {
    font-size: 4rem;
    /* border: 2px solid green;*/
    width: 50%;
    text-align: center;
}

.bannerContainer h4 {
    font-size: 1.5rem;
    margin: 20px;

}

.bannerContainer p {
    font-size: 1rem;
    margin: 20px;
}

.inputContainer {
    /*border: 2px solid green;*/
    width: 50%;
    display: flex;
}

.emailInputBox {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid white;
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
    width: 60%;
    color: white;
    font-size: 1rem;

}

.emailInputBox::placeholder {
    color: white;
}

.getStartedButton {
    width: 30%;
    background-color: red;
    border: none;
    outline: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;

}

.carouselSection {
    color: white;
    padding: 20px;
}

.row {
    display: flex;
    overflow-x: scroll;
    gap: 10px;
    padding: 20px 0;
}

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

.row img:hover {
    transform: scale(1.1);
}

.row::-webkit-scrollbar {
    display: none;
}

.getStartedButton:hover {
    background-color: #e50914;
    cursor: pointer;
}

.signinButton:hover {
    cursor: pointer;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .bannerContainer h2 {
        font-size: 2rem;
        width: 90%;
    }

    .inputContainer {
        flex-direction: column;
        align-items: center;
    }

    .emailInputBox {
        width: 90%;
        margin-bottom: 10px;
    }

    .getStartedButton {
        width: 60%;
    }

    .row img {
        width: 120px;
    }
}

.menuList li {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}