#portfolio #introduction {
    display: flex;
    flex-direction: column;

    .content { height: 100%; }

    .dl-resume {
        border: .5vmin solid #2F3130;
        background-color: #894EFF;
        height: 10%;
        width: 20%;
        font-size: 4vmin;
        position: relative;
        left: 80%;
        
        a {
            display: inline-block;
            width: 100%;
            height: 100%;
            border-bottom: 1vmin solid #5923C3;
        }

        img { 
            width: 3vmin;
            margin-right: 1vmin;
            filter: invert(0.9);
        }
    }

    .dl-resume:hover { background-color: #6D33E0; }

    .presentation {
        width: 100%;
        height: 75%;
        background-color: #14163C;
        border: .5vmin solid #303030;
        margin-top: .5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
        padding: 0 1.5%;

        .img {
            width: 25%;
            height: 100%;
            text-align: end;

            img { 
                height: 100%;
                transform: scaleX(-1);
            }
        }

        .description {
            width: 70%;
            display: flex;
            justify-content: center;
            flex-direction: column;

            .name {
                font-size: 12vmin;
                span { color: #FE21E3; }
            }

            .job { 
                font-size: 5vmin;
                margin-top: 20px;
            }
        }
    }

    .wish {
        width: 100%;
        height: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4vmin;
        margin-top: .5%;
        background-color: #FE0000;
        border: .5vmin solid #541B14;
    }
}