New title dessign
I noticed that the main title of my website didn’t have a link, so I added it and made a small improvement as well.
In the header of this website, I already have a Home section, but I think that it is almost mandatory to have the main title of every website linked to the main section (i.e., homepage). So I added the proper link.
Apparently, writing it this way:
<a href="/"><h1>misello.net</h1></a>
Is not as correct as:
<h1><a href="/">misello.net</a></h1>
So I used the second one.
Also, when I was a student, I learned how to create a text effect using CSS text-shadow. So I searched for any remaining files from those times and found it in a friend’s repository.
The effect I applied to the H1 heading is this one:
text-shadow:-1px -1px 0px #000000,
-1px 1px 0px #000000,
1px -1px 0px #000000,
1px 1px 0px #000000,
-2px 2px 0px var(--color-accent),
-3px 3px 0px var(--color-accent),
-4px 4px 0px var(--color-accent);
You can see the difference here. This is what it looked like before:
And this is what it looks like now: