CSS
html, body {
background: #7acfd6;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
h1 {
font-size: 120px;
font-family: "Roboto Slab";
text-align: center;
color: #e0474c;
text-shadow: 10px 10px 0 #8c1000;
cursor: pointer;
transition: all 0.40s ease;
}
h1:hover {
color: #8c1000;
text-shadow: 10px 10px 0 #e0474c;
}