.flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
    flex-direction: row;
}


.little-me {
    top: 50px;
    width: 250px;  
    height: auto;
    display: block;
    position: absolute;
    cursor: grab;
    user-select: none;
    touch-action: none;
}


.little-me .image {
    width: 100%;
    display: block;
    border: 8px solid #ffffff;
    box-sizing: border-box;
    box-shadow: 3px 8px 14px rgba(0, 0, 0, 0.39);
    background-color: #ffffff;
}


.tape {
    position: relative;
    top: 14px;
    left: 0;
    transform: none;
    display: block;
    margin: 0 auto;
    width: auto;
    height: 30px;
    z-index: 2;
}

.little-me {
    z-index: 1;
}

.flexbox p {
    position: absolute;
    text-align: center;
    top: 425px; /* underneath .little-me */
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 0; /* behind .little-me */
}
