You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
347 B
CSS

1 year ago
a{
font-family: 'Courier New', Courier, monospace;
font-size: 180px;
1 year ago
color: aqua;
position: relative;
display: inline-flex;
/* top: 50%;
1 year ago
left: 30%;
transform: translate(-30%, -30%); */
1 year ago
}
/* Centered text */
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}