.box {
    position: relative;
    /* max-width: 800px; Maximum width */
    margin: 0px; /* Center it */
}

.box .boxbox {
    position: absolute; /* Position the background text */
    bottom: 0; /* At the bottom. Use top:0 to append it to the top */
    background: #124653; /* Fallback color */
    color: #f1f1f1; /* Grey text */
    width: 20%; /* Full width */
    padding: 10px; /* Some padding */
    border-top-right-radius: 10%;
}

* {box-sizing: border-box}

/* Container needed to position the overlay. Adjust the width as needed */
.mycontainer {
    border-radius: 10px;
    position: relative;
/*width: 50%;*/
/*max-width: 300px;*/
}

/* Make the image to responsive */
.myimage {
    display: block;
    width: 100%;
    height: auto;
}

/* The overlay effect - lays on top of the container and over the image */
.myoverlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.8); /* Black see-through */
    color: #f1f1f1;
    width: 100%;
    transition: .5s ease;
    opacity:0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
}
  
.blink_me {
    animation: blinker 1s linear infinite;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.hoverblu {        
    transition: box-shadow 0.3s ease-in-out;
}
.hoverblu:hover {
    -webkit-box-shadow: 0px 10px 10px 0px rgba(3, 0, 129, 1);
    -moz-box-shadow: 0px 10px 10px 0px rgba(3, 0, 129, 1);
    box-shadow: 0px 10px 10px 0px rgba(3, 0, 129, 1);
    border-radius: 10px;
}

.card-vertical-shadow {
    -webkit-box-shadow: 0px 10px 5px 0px rgba(3, 0, 129, 1);
    -moz-box-shadow: 0px 10px 5px 0px rgba(3, 0, 129, 1);
    box-shadow: 0px 5px 10px 0px rgba(3, 0, 129, 1);
}

.elevate {
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}
.elevate:hover {
    top: -15px;
}
.mycontainer:hover .myoverlay {
opacity: 1;
}