*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}


body{

    background:#0b0b0f;
    color:white;

}


/* HEADER */

header{

    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 60px;

    background:linear-gradient(
        180deg,
        #000,
        transparent
    );

}


header h1{

    color:#e50914;
    font-size:38px;
    font-weight:900;

}


nav a{

    color:white;
    text-decoration:none;
    margin-left:30px;
    font-size:17px;

}


nav a:hover{

    color:#e50914;

}


/* HERO */


.hero{

    height:500px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding-left:70px;


    background:
    linear-gradient(
        90deg,
        #000 10%,
        transparent
    ),
    linear-gradient(
        0deg,
        #0b0b0f,
        transparent
    );

}



.hero h2{

    font-size:55px;
    max-width:700px;

}


.hero p{

    margin-top:20px;
    font-size:22px;
    color:#ccc;

}



.hero button{

    margin-top:35px;

    width:180px;
    padding:15px;

    border:none;
    border-radius:8px;

    background:#e50914;
    color:white;

    font-size:18px;
    font-weight:bold;

    cursor:pointer;

}


.hero button:hover{

    background:#b20710;

}



/* CATALOGUE */


.catalogue{

    padding:40px 60px;

}


.catalogue h2{

    font-size:32px;
    margin-bottom:30px;

}



.cards{

    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(200px,1fr));

    gap:25px;

}




.card{

    background:#15151c;

    border-radius:12px;

    overflow:hidden;

    transition:0.3s;

}



.card:hover{

    transform:scale(1.05);

}



.card img{

    width:100%;
    height:300px;

    object-fit:cover;

}



.card h3{

    padding:15px 15px 5px;

    font-size:22px;

}



.card p{

    padding:0 15px 20px;

    color:#aaa;

}



/* MOBILE */


@media(max-width:700px){


header{

    padding:0 20px;

}


.hero{

    padding-left:25px;

}


.hero h2{

    font-size:38px;

}


.catalogue{

    padding:30px 20px;

}

}
