*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body{
    width: 100%;
    height: 100vh;

    font-family: Arial, Helvetica, sans-serif;

    background-color: black;
    color: white;
}


body{
    padding: 30px 50px;
}





nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo h1{
    font-size: 40px;
}


.nav-links{
    display: flex;
    gap: 60px;
}


.nav-links a{
    text-decoration: none;
    color: white;
    font-size: 22px;
}


nav button{
    border: none;
    background-color: rgb(23,23,23);

    color: white;

    padding: 18px 30px;

    border-radius: 14px;

    font-size: 20px;
}





.hero{
    margin-top: 80px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 40px;
}


.hero h1{
    font-size: 140px;
    font-weight: 700;
}


.category{
    display: flex;
    gap: 20px;
}


.category button{
    border: none;

    background-color: rgb(22,22,22);

    color: white;

    padding: 18px 30px;

    border-radius: 40px;

    font-size: 22px;
}


#active{
    background-color: orangered;
}



/* cards */

.cards-container{
    margin-top: 80px;

    display: flex;
    justify-content: space-between;
    gap: 30px;
}


.card{
    width: 32%;

    background-color: rgb(10,10,10);

    border-radius: 30px;

    overflow: hidden;
}


.card-image{
    width: 100%;
    height: 380px;
}


.card-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.card-content{
    padding: 25px;

    display: flex;
    flex-direction: column;

    gap: 25px;
}


.card-content span{
    width: fit-content;

    background-color: rgba(255, 68, 0, 0.242);

    color: orange;

    padding: 12px 20px;

    border-radius: 30px;

    font-size: 20px;
}


.card-content h2{
    font-size: 28px;
    line-height: 38px;
}


.card-content p{
    color: gray;
    font-size: 22px;
}