JSFiddle - React, Tailwind, and code Playground

by oceog

HTML

<div id="container_logo">
				<p>Всем привет</p>
			</div>

CSS

#container_logo p {
    font-family: Verdana;
    font-size: 28px;
	text-align: center;
	text-shadow: #363535 1px 1px 1px;
	font-variant: small-caps;
	color: white;
    cursor: pointer;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
#container_logo p:hover {
    color: black;
    text-shadow: #363 10px 10px 10px;
}