* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: "Ubuntu", serif;
}

html,
body {
    width: 100%;
    height: 100%;
}


:root {
    --netflix-redcolor: #e50914;
}


.section1 {
    width: 100%;
    height: 100%;
    background-image: url(./assets/netflixbg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.7);
    background-blend-mode: multiply;
}

.section1 nav {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 130px;
}

.nav-right-side button {
    background-color: var(--netflix-redcolor);
    padding: 10px 20px;
    border: none;
    color: white;
    font-weight: bolder;
    border-radius: 5px;
}

.nav-right-side select {
    background: transparent;
    padding: 8px 20px;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    margin-right: 10px;
}

.nav-right-side select option {
    color: black;
}

.section1-main {
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section1-center-content {
    max-width: 600px;
    margin-bottom: 100px;
    padding: 10px 20px;
}

.section1-center-content h1 {
    font-size: 55px;
    text-align: center;
}

.section1-center-content p {
    text-align: center;
    line-height: 35px;
}

.section1-center-content input {
    min-width: 350px;
    padding: 15px 10px;
    background: transparent;
    border: 1px white solid;
    border-radius: 5px;
    font-size: 15px;
}

.section1-center-content button {
    padding: 12px 20px;
    background-color: var(--netflix-redcolor);
    border: none;
    font-size: 20px;
    font-weight: 500;
    border-radius: 5px;
    margin-left: 10px;
}

.section1-center-content button i {
    font-size: 15px;
}

.divider-section2 {
    width: 100%;
    height: 5px;
    background: linear-gradient(217deg, rgba(255, 0, 0, .8), rgba(255, 0, 0, 0) 70.71%),
        linear-gradient(127deg, rgba(0, 255, 0, .8), rgba(0, 255, 0, 0) 70.71%),
        linear-gradient(336deg, rgba(0, 0, 255, .8), rgba(0, 0, 255, 0) 70.71%);
}

.section2 {
    width: 100%;
    height: 100%;
    padding: 50px 150px;
    background-color: black;

}

.section2-first-part {
    display: flex;
    gap: 25px;
    padding-top: 20px;
    padding-left: 10px;
    padding-bottom: 15px;
    overflow-x: scroll;
    margin-bottom: 20px;
}

.section2-first-part img {
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.section2-first-part img:hover {
    transform: scale(1.05);
}


.section2-first-part::-webkit-scrollbar {
    height: 5px;
    background-color: transparent;
}

.section2-first-part::-webkit-scrollbar-thumb {
    background-color: var(--netflix-redcolor);
    border-radius: 20px;
}

.section2-first-part::-webkit-scrollbar-track {
    background-color: transparent;
}

.section2-second-part {
    margin-top: 10px;
    width: 100%;
    height: 300px;
    padding: 10px 5px;
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
}

.section2-second-part .section2-second-part-container {
    margin: 0 10px;
    flex: 1;
    background-color: #1e2840;
    border-radius: 20px;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start
}

.section2-second-part .section2-second-part-container p {
    color: rgb(142, 142, 142);
}