22 lines
444 B
CSS
22 lines
444 B
CSS
|
|
.text-on-header{
|
|
color: black;
|
|
font-family: 'Pacifico', cursive;
|
|
font-size: 20px;
|
|
text-transform: uppercase;
|
|
}
|
|
.text-on-body{
|
|
color: black;
|
|
font-family: 'Indie Flower', cursive;
|
|
font-size: 25px;
|
|
}
|
|
.text_on_image{
|
|
color:white;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
text-transform: uppercase;
|
|
font-size: 2.5em;
|
|
font-family: 'Faster One', cursive;
|
|
} |