    .function-middle {
        display: flex;
        flex-direction: row;
        padding: 10px 20px;

        @media (max-width: 768px) {
            padding: 10px 0;
        }
    }

    .hidden-carousel {
        @media (max-width: 768px) {
            margin-left: 300px;
        }
    }

    .typewriter {
        display: flex;
        flex-wrap: wrap;
        text-wrap: wrap;
        margin: 0;
        font-size: 18px;
        font-family: "Poppins", sans-serif;

        @media (max-width: 768px) {
            font-size: 15px;
        }

        &:after{
            animation: blink 1000ms linear infinite alternate;
        }
    }

    .function{
        color: #0B4C6A;
    }

    .echo {
        color: #5d001d;
        padding-right: 10px;

        @media (max-width: 768px) {
            font-size: 15px;
        }
    }
    
    .function-name{
        color: #5d001d;
    }

    @-webkit-keyframes blink{
        0%{opacity: 0;}
        100%{opacity: 1;}
    }

    @-moz-keyframes blink{
        0%{opacity: 0;}
        100%{opacity: 1;}
    }

    @keyframes blink{
        0%{opacity: 0;}
        100%{opacity: 1;}
    }

    body {
        margin: 0;
    }

    .carousel {
        display: flex;
        will-change: transform;
        animation: scrolling 30s linear infinite;
        width: max-content;

        @media (max-width: 768px) {
            gap: 10%;
            animation: scrolling-mobile 30s linear infinite;
        }
    }

    @keyframes scrolling {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    @keyframes scrolling-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-150%);
        }
    }


    .skills {
        background-color: #5d001d;
        max-width: 80%;
        min-height: 170px;
        width: 100%;
        height: 100%;
        max-height: 200px;
        border-radius: 10px 0 0 10px;
        border: 2px solid #5d001d;
        border-right: none;
        margin: 100px 0 0 auto;
        padding: 20px 0;
        overflow: hidden;
        display: flex;

        @media (max-width: 768px) {
            margin: 30px 0;
            max-width: 100%;
            border-radius: 0;
        }

        > * {
            flex: 0 0 100%;
        }

        .skill {
            color: #e3e2de;
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            position: relative;

            img {
                height: 100px;
            }
        }
    }

    .intro-desc {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 100%;
        max-height: 200px;
        color: #EFEFEF;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 16px;
    }

    .intro {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: 100%;
        max-height: 500px;
        gap: 10%;
        min-height: 400px;

        @media (max-width: 768px) {
            gap: 0;
            display: block;
            max-height: 100%;
            min-height: 600px;
        }

        .intro-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-end;

            @media (max-width: 768px) {
                gap: 0;
                margin: 30px 0;
            }

            h2 {
                font-family: "Poppins", sans-serif;
                font-weight: 500;
                padding: 0;
                margin: 0;
                color: #5d001d;
                font-size: 20px;
                letter-spacing: 2px;
            }

            .intro-name {
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                align-items: flex-end;

                h3 {
                    font-family: "Poppins", sans-serif;
                    font-weight: 700;
                    padding: 0;
                    margin: 0;
                    color: #EFEFEF;
                    font-size: 100px;
                    letter-spacing: -3px;
                    text-shadow: 2px 3px 0px #5d001d;

                    @media (max-width: 768px) {
                        font-size: 65px;
                    }

                    &.first-name {
                        margin-bottom: -70px;

                        @media (max-width: 768px) {
                            margin-bottom: -45px;
                        }
                    }
                }
            }
        }

        .intro-right {
            flex: 2;
            font-size: 18px;
            font-family: "Poppins", sans-serif;

            @media (max-width: 768px) {
                font-size: 15px;
            }
        }
    }

    body {
        background-color: #e3e2de;
    }

    .main-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 100px 0;

        @media (max-width: 768px) {
            margin: 10px auto;
            flex-direction: column;
        }
    }

    .header {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        width: 30%;
        margin: 50px auto 0 10%;
        max-height: 100px;
        height: 100%;

        @media (max-width: 768px) {
            width: 80%;
            margin: 50px auto 0 auto;
        }

        .header-left{
            display: flex;
            flex-direction: row;
            background-color: #EFEFEF;
            border: 2px solid #EFEFEF;
            flex: 2;
            max-height: 100px;
            min-height: 100px;
            height: 100%;
            border-radius: 10px 0px 0px 10px;
            justify-content: flex-start;
            align-items: center;
            gap: 5%;

            @media (max-width: 768px) {
                max-height: 80px;
                min-height: 80px;
            }

            .name {
                flex: 1;
                margin-right: 40px;

                h1{
                    font-family: "Poppins", sans-serif;
                    font-weight: 500;
                    padding: 0;
                    margin: 0;
                    color: #5d001d;
                    font-size: 20px;
                    letter-spacing: 2px;

                    @media (max-width: 768px) {
                        font-size: 18px;
                    }
                }
            }

            img {
                max-height: 80px;
                margin-left: 40px;

                @media (max-width: 768px) {
                    max-height: 50px;
                    margin-left: 20px;
                }
            }
        }

        .header-right {
            flex: 1;
            max-height: 100px;
            height: 100%;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            border: 2px solid #5d001d;
            border-radius: 0px 10px 10px 0px;
            min-height: 100px;

            @media (max-width: 768px) {
                max-height: 80px;
                min-height: 80px;
            }

            .links {
                display: flex;
                flex: 3;
                gap: 10%;
                justify-content: center;
                align-items: center;
                font-size: 18px;

                a {
                    text-decoration: none;
                    color: #5d001d;
                    font-family: "Poppins", sans-serif;
                    font-weight: 500;
                }
            }

            .link-btn {
                border: 1px solid;
                overflow: hidden;
                position: relative;
                
                a {
                    z-index: 20;
                }
                
                &:after {
                    background: #fff;
                    content: "";
                    height: 155px;
                    left: -75px;
                    opacity: .2;
                    position: absolute;
                    top: -50px;
                    transform: rotate(35deg);
                    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
                    width: 50px;
                    z-index: -10;
                }
                }

                .link-btn:hover {
                
                    &:after {
                        left: 120%;
                        transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
                    }
                 }


            .socials {
                flex: 1;
                display: flex;
                justify-content: center;
                align-items: center;
                a {
                    border-radius: 100%;
                    border: 2px solid #5d001d;
                    padding: 10px;
                    cursor: pointer;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: #5d001d;
                    height: 30px;
                    width: 30px;
                    text-decoration: none;

                    @media (max-width: 768px) {
                        height: 20px;
                        width: 20px;
                    }
                }
            }
        }
    }

    .footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        width: 80%;
        max-height: 100px;
        height: 100%;
        border: 2px solid #5d001d;
        border-radius: 10px;
        margin: 0 auto 50px auto;
        min-height: 100px;
        color: #5d001d;
        font-family: "Poppins", sans-serif;

        @media (max-width: 768px) {
            width: 80%;
            margin: 0 auto 50px auto;
            max-height: 80px;
            min-height: 80px;
        }

        img {
            max-height: 80px;
            margin: 0 20px;

            @media (max-width: 768px) {
                max-height: 50px;
                margin: 0 10px;
            }
        }

        a {
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #5d001d;
            height: 30px;
            width: 30px;
            text-decoration: none;
            margin: 0 20px;

            @media (max-width: 768px) {
                margin: 0 10px;
            }
        }

        @media (max-width: 768px) {
            p {
                font-size: 13px;
            }
        }
    }
