<h1>Covfefe</h1>
@import url('https://fonts.googleapis.com/css?family=Monoton');
$lightColor: #F5EE9E;
$darkColor: #F49E4C;
$bgColor: #AB3428;
html,
body {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: "Monoton", Helvetica, sans-serif;
background: $bgColor;
letter-spacing: 5px;
}
h1 {
display: inline;
font-size: 15vw;
text-transform: uppercase;
color: $darkColor;
@media (min-width: 700px) {
font-size: 9vw;
}
@media (min-width: 1400px) {
font-size: 150px;
}
}
@supports (background-clip: text) {
h1 {
color: transparent;
background: linear-gradient(7deg, $lightColor 50%, $darkColor 0);
background-clip: text;
}
}
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.