:root{
    --black: #1C1C1C;
    --gray: #444;
    --white: #ddd;
    --green: #A5FD29;
    --pruple: #AE3DFF;
}

body{
    font-family: 'Roboto Mono', monospace;
}

.nav{
    display: flex;
    justify-content: space-between;
    padding: 10px 120px ;
    box-sizing: border-box;
    align-items: center;
    background-color: var(--black);
}

.nav>div>img{
    width: 100px;
}

.nav>div>ul>li{
    list-style-type: none;
    display: inline;
    margin-left: 20px;
}
.nav>div>ul>li>a{
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
}

main{
    padding: 100px;
}

.header{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid black;
    padding-bottom: 40px;
    margin: 0px 40px;
}


.header>*{
    margin: 0px;
}
.header>h1{
    font-size: 80px;
}

.category{
    margin: 20px 40px 50px 40px;
}

.category>p{
    margin: 3px 0px;
}


.parallax-img {
    height: 600px;
    overflow: hidden;
    position: relative;
  }

  .parallax-img img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease-out;
  }

.phrase{
    font-size: 60px;
    text-align: center;
    margin: 100px 40px;
}

.carrousel{
    width: 100%;
    height: 500px;
    overflow-x: scroll;
    overflow-y: hidden;

    position: relative;

}

.carrousel>div{

    position: absolute;
    display: flex;


}

.carrousel>div>img{
    width: 500px;
    height: 500px;
    object-fit: cover;
    padding: 20px;

}

.para{
    padding: 40px;
}

.subtitle{
    padding: 20px 80px;
    font-size: 40px;
    font-weight: bold;
    color: var(--pruple);

}

.lateral{
    display: flex;
}

.lateral>*{
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
    .header>h1{
        font-size: 30px;
    }
    .parallax-img{
        height: 320px
    }
    .phrase{
        font-size: 30px;
    }
    .lateral{
        display: block;
    }

    .carrousel{
        height: 300px;
    }
    .carrousel>div>img{
        height: 300px;
        width: 300px;
    }
}