* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 50%;
}

.container img {
    display: block;
    width: 100%;
    height: auto;
}

.container .slide {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: #ED5181;
    overflow: hidden;
    width: 0;
    height: 100%;
    transition: 0.5s ease-in-out;
}

.container:hover .slide {
    width: 100%;
}

.container .slide .text {
    color: #fff;
    font-size: 5em;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}