        * {
            padding: 0;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: linear-gradient(#0a0a0a, #252525);
            color: #fff;
        }

        .container {
            width: 100%;
            padding: 10px 10%;
            margin: 3% 0;
        }

        .back {
            margin-bottom: 60px;
        }

        .back a {
            text-decoration: none;
            color: #fff;
            padding: 10px 20px;
            background: #ff5e00;
            border-radius: 25px;
        }

        .sub-title {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 30px;
            color: #fff;
        }

        .launch {
            color: #fff;
            background: #414141;
            padding: 10px 15px;
            border-radius: 5px;
            margin: 5% 0;
        }

        span {
            color: #ffc09b;
            font-weight: bold;
        }

        p {
            font-size: 16px;
            color: #ababab;
        }

        .recommend-img img {
            margin-top: 5%;
            width: 100%;
            height: auto;
        }

        h2 {
            font-size: 20px;
            color: #ffffff;
            margin-top: 30px;
        }

        /*-------- Memories ---------*/

        .work-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            grid-gap: 40px;
            margin-top: 50px;
        }

        .work {
            border-radius: 18px;
            position: relative;
            overflow: hidden;
        }

        .work img {
            width: 100%;
            border-radius: 10px;
            display: block;
            transition: transform 0.5s;
        }

        .layer {
            width: 100%;
            height: 0%;
            background: linear-gradient(rgba(0, 0, 0, 0.6), #ff3300);
            border-radius: 10px;
            position: absolute;
            left: 0;
            bottom: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 0 40px;
            text-align: center;
            font-size: 14px;
            transition: height 0.5s;
        }

        .layer h3 {
            font-weight: 600;
            margin-bottom: 20px;
        }

        .layer p {
            color: #d6d6d6;
        }

        .layer a {
            margin-top: 20px;
            color: #ff3300;
            text-decoration: none;
            font-size: 18px;
            line-height: 60px;
            background: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
        }

        .work:hover img {
            transform: scale(1.1);
        }

        .work:hover .layer {
            height: 100%;
        }

        .copyright p {
            text-align: center;
            font-weight: 300;
            font-size: 12px;
            margin-top: 60px;
            margin-bottom: 20px;
        }

        /*----------- media queries -----------*/

        nav .fa-solid {
            display: none;
        }

        @media only screen and (max-width: 1000px) {

            .container {
                width: 100%;
                padding: 10px 3%;
                margin: 3% 0;
            }

            .back {
                margin-bottom: 60px;
                margin-top: 10px;
            }

            h2 {
                font-size: 14px;
                color: #ffffff;
                margin-top: 30px;
            }

            .sub-title {
                font-size: 25px;
                font-weight: 800;
                margin-bottom: 20px;
                color: #fff;
            }

            .launch {
                color: #fff;
                background: #414141;
                font-size: 10px;
                padding: 7px 5px;
                border-radius: 5px;
            }

            p {
                font-size: 12px;
            }
        }