@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", serif;
}

body {
    background-color: black;
}

.netflix-logo {
    width: 10em;
    position: relative;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 60vw;
    height: 70px;
    margin: auto;
}

nav .btn {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 8px;
}

main {
    height: 70vh;
    background-image: url(./assets/images/background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: max(1600px, 100vw);
    position: relative;
}

main .box {
    width: 100%;
    height: 70vh;
    position: absolute;
    top: 0;
    background-color: black;
    opacity: 0.79;
}

.get-started {
    height: calc(100% - 70px);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 30px;
    padding: 0 30px;
}

.get-started span:nth-of-type(1) {
    text-align: center;
    font-weight: 900;
    font-size: 38px;
}

.get-started span:nth-of-type(2) {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
}

.get-started span:nth-of-type(3) {
    text-align: center;
    font-weight: 500;
    font-size: 15.5px;
}

.member-detail {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.member-detail input {
    border: 1px solid rgb(100, 98, 98);
    width: 25em;
    padding: 14px;
    color: white;
    background-color: #0000004f;
}

.member-detail input::placeholder {
    font-family: "Open Sans", serif;
    color: rgb(167, 167, 167);
}

.separation {
    height: 5px;
    background-color: rgb(34, 33, 33);
}

.red-btn {
    border: none;
    background-color: rgb(229, 9, 20);
    font-weight: bold;
    color: white;
    padding: 4px 11px;
    border-radius: 3px;
    cursor: pointer;
}

.red-btn.gt {
    border: none;
    background-color: rgb(229, 9, 20);
    font-size: 18px;
    font-weight: bold;
    color: white;
    padding: 12.2px 20px;
    border-radius: 3px;
    cursor: pointer;
}

#lang {
    font-weight: bold;
    color: white;
    padding: 4px 11px;
    border-radius: 3px;
    background-color: #0000004f;
}

.first-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 10px;
    margin: auto;
    flex-wrap: wrap;
    max-width: 100%;
}

.txt {
    display: flex;
    flex-direction: column;
    width: 450px;
    gap: 15px;
}

.txt span:nth-of-type(1) {
    font-size: 35px;
    font-weight: 800;
}

.txt span:nth-of-type(2) {
    font-size: 17px;
    font-weight: 400;
}

.tv {
    position: relative;
}

.tv img {
    position: relative;
    z-index: 10;
}

.tv video {
    position: absolute;
    top: 95px;
    right: 80px;
}

#small-txt {
    font-size: 16px;
}

.second-sec {
    flex-direction: row-reverse;
}

#sec-video {
    width: 33.9em;
    top: 79.5px;
}

.third-sec {
    flex-direction: row-reverse;
}

.fourth-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    color: white;
}

.fourth-sec h1 {
    padding: 20px 20px 40px 20px;
    font-weight: 900;
}

.fourth-sec .questions {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.fourth-sec .questions span {
    font-weight: 500;
}

.fourth-sec .questions img {
    width: 1.8em;
}

.fourth-sec .questions .question {
    width: 60vw;
    height: 8vh;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: rgb(44, 44, 44);
}

.fourth-sec .questions .question:hover {
    background-color: rgb(68, 68, 68);
}

.mar-top {
    margin: 25px 0;
    text-align: center;
}

footer {
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: auto;
    width: 62vw;
    gap: 20px;
}

footer a {
    color: white;
}

.Top {
    color: #9c9b9b;
}

.Top a {
    color: #9c9b9b;
}

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 100px;
}

.columns .column {
    display: flex;
    flex-direction: column;
    font-size: small;
    gap: 15px;
    color: #9c9b9b;
}

.columns .column a {
    color: #9c9b9b;
}

/* Media Queries */
@media only screen and (max-width:1100px) {
    .txt {
        margin-top: 50px;
        text-align: center;
    }

    .tv img {
        width: 25em;
    }

    .tv video {
        width: 19em;
        right: 50px;
        top: 60px;
    }

    #sec-video {
        width: 20.5em;
        top: 51px;
    }

    .fourth-sec .questions span {
        font-size: 14px;
    }

    .fourth-sec .questions img {
        width: 1.4em;
    }
}

@media only screen and (max-width:700px) {
    .columns {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media only screen and (max-width:587px) {
    nav {
        justify-content: space-around;
        max-width: 100vw;
    }

    .netflix-logo {
        width: 7em;
    }

    .red-btn {
        font-size: 12px;
        padding: 2px 8px;
    }

    #lang {
        font-size: 12px;
        padding: 2px 8px;
    }

    .get-started span:nth-of-type(1) {
        font-size: 25px;
    }

    .get-started span:nth-of-type(2) {
        font-size: 14px;
    }

    .get-started span:nth-of-type(3) {
        font-size: 13px;
    }

    .get-started .member-detail input {
        width: 21em;
        padding: 8px 12px;
    }

    .red-btn.gt {
        font-size: 14px;
        padding: 8px 15px;
    }

    .txt {
        width: 300px;
    }

    .txt span:nth-of-type(1) {
        font-size: 23px;
    }

    .txt span:nth-of-type(2) {
        font-size: 12px;
    }

    .tv img {
        position: relative;
        z-index: 10;
        width: 18em;
    }

    .tv video {
        position: absolute;
        width: 13.5em;
        left: 38.2px;
        top: 45px;
    }

    #small-txt {
        font-size: 13px;
    }

    #sec-video {
        width: 15em;
        top: 35px;
        left: 8px;
    }

    .fourth-sec h1 {
        font-size: 1.2em;
        padding-bottom: 25px;
    }

    .fourth-sec .questions span {
        font-size: 13.5px;
    }

    .fourth-sec .questions img {
        width: 1.2em;
    }

    .mar-top {
        font-size: 13px;
    }

    .fourth-sec .member-detail input {
        width: 20em;
    }
}

@media only screen and (max-width:500px) {

    .Top {
        font-size: 0.9em;
    }
}

@media only screen and (max-width:400px) {
    .Top {
        font-size: 0.88em;
    }
}