[html]<link href="https://fonts.googleapis.com/css?family=Istok+Web:400,400i,700,700i" rel="stylesheet">
<style>
.changingtides {
position: relative;
margin: 20px auto;
height: 400px;
width: 500px;
overflow: hidden;
outline: 1px solid rgba(0,0,0,0.1);
outline-offset: 7px;
border: 1px solid rgba(0,0,0,0.1);
background: #f7f7f7;
}
.ctmainbar {
position: absolute;
height: 200px;
width: 450px;
background: #262626;
top: 0px;
font-family: istok web;
letter-spacing: 1px;
padding-left: 50px;
transition: 0.8s;
}
.changingtides:hover .ctmainbar {
top: 200px;
background: #f7f7f7;
}
.ctlyrics {
line-height: 300px;
color: #eee;
font-size: 10px;
text-transform: uppercase;
z-index: 2;
transition: 0.8s;
}
.ctlyrics2 {
line-height: 300px;
color: #262626;
font-size: 10px;
text-transform: uppercase;
z-index: 2;
transition: 0.8s;
position: absolute;
font-family: istok web;
left: 50px;
opacity: 0;
font-weight: 700;
transition-delay: 0s;
transition: 0.4s;
letter-spacing: 1px;
}
.changingtides:hover .ctlyrics2 {
opacity: 1;
transition-delay: 0.7s;
}
.changingtides:hover .ctlyrics {
opacity: 0;
z-index: 0;
}
.cttext {
height: 100px;
width: 390px;
position: absolute;
top: 50px;
left: 50px;
font-size: 11px;
letter-spacing: 0.7px;
color: #262626;
z-index: 2;
text-align: justify;
overflow: auto;
padding-right: 10px;
line-height: 190%;
}
.ctpicbar {
position: absolute;
bottom: 0px;
height: 200px;
width: 500px;
background-size: cover;
transition: 0.8s;
}
.changingtides:hover .ctpicbar {
bottom: 200px;
}
.ctpicbar:after {
position: absolute;
height: 200px;
width: 500px;
content: "";
background: #4c586f;
mix-blend-mode: screen;
transition: 0.5s;
}
.changingtides:hover .ctpicbar:after {
background: #a2aab0
}
.cttext::-webkit-scrollbar{width:3px}
.cttext::-webkit-scrollbar-track{background:transparent!important;border:none!important}
.cttext::-webkit-scrollbar-thumb{background: #262626}
</style>
<div class="changingtides">
<div class="ctpicbar" style="background-image: url(https://i.imgur.com/4QHzKjV.png)">
<span class="ctlyrics2">ещё, ещё, е щ ё. . .</span>
</div>
<div class="ctmainbar"><span class="ctlyrics">дыши со мной в унисон</span>
<div class="cttext">
<center>такое чувство, что благодаря тому, что тебя встретил,<br>
смог немножко полюбить этот мир.</center>
</div>
</div>
</div>[/html]