.myCard {
    color: white;
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 1px 1px 8px rgba(23, 23, 23, 0.486);
}

.myCard .cardImg {

    width: 100%;
    height: 370px;
}

.myCard .cardImg img {
    width: 100%;
    height: 330px;
}

.myCard .myCardbody {
    background-color: rgba(0, 0, 0, 0.495);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 240px;
    transition-duration: .5s;
}



.myCardbody a {
    color: white;
}

.myCardbody a:hover {
    color: rgb(255, 0, 0);
}

.myCardbody .bodyContent {
    display: none;
}

.myCard .hovered {
    background-color: rgba(0, 0, 0, 0.766) !important;
    top: 0px !important;
}

.hovered .bodyContent {
    display: block;
}

.myCardbody i {
    color: rgb(254, 1, 1) !important;
}