.left-arrow {
    content: url("../assets/images/ui/arrow-right.png");
    background-size: contain;
    position: absolute;
    padding: 0;
    top: 50px;
    left: 50px;
    transition: 0.1s;
    opacity: 0.5;
    scale: -1 1;
}

.left-arrow:hover {
    transform: scale(1.25);
    border: 10px solid white;
    border-radius: 50px;
    opacity: 1;
}

.made-with-tool {
    font-size: 30px;
    font-weight: bold;
    color: orange;
    text-decoration: none;
}

.made-with-tool::before {
    color: white;
    content: "Made With: ";
    text-decoration: none;
    font-size: 20px;
}


.showcase-img {
    position: relative; /* position the child absolutely within the parent */
    top: 0; /* align the top of the child with the top of the parent */
    left: 0; /* align the left of the child with the left of the parent */
    width: 100%; /* span 100% of the parent's width */
    height: 50%; /* span 50% of the parent's height */
    background-size: cover;
    background-position: center;
}

.showcase-card:not(:hover) .speech-bubble {
    display: none;
}

.showcase-card:hover .speech-bubble {
    display: block;
    opacity: 1;
}

.showcase-card#PyRock2D::after {
    content: url("../assets/images/banners/PyRock2D-banner.png");
}

.showcase-card#ScoreUnlocked::after {
    content: url("../assets/images/banners/scoreunlocked-banner.png");
}

/*based on http://projects.verou.me/bubbly/*/
.speech-bubble {
    position: fixed;
    /*padding: 10px;*/
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid white;
    border-radius: .4em;
    opacity: 0;
    width: 280px;
    transition: opacity 1s ease;
}

.speech-bubble:after{
    content: url("../assets/images/ui/popup-left-arrow.png");
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 0;
    margin-left: -20px;
}

/*.speech-bubble:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    width: 0;*/
/*    height: 0;*/
/*    border: 30px solid transparent;*/
/*    border-right-color: rgba(0, 0, 0, 0.9);*/
/*    border-left: 0;*/
/*    border-bottom: 0;*/
/*    margin-top: -15px;*/
/*    margin-left: -30px;*/
/*    transition: opacity 1s ease;*/
/*}*/

.speech-bubble-content {
    padding: 20px;
    font-family: quicksand, serif;
    font-size: 25px;
    color: white;
}