update index.html to add a new section for external sites and enhance styles for better presentation

This commit is contained in:
pacnpal
2025-02-16 11:44:47 -05:00
parent 72c7504401
commit cc23e5ad97
2 changed files with 19 additions and 3 deletions

View File

@@ -15,3 +15,18 @@ h1, h2 {
p {
font-size: 1.2em;
}
section {
padding: 20px;
margin: 20px auto;
max-width: 800px;
background-color: rgba(30, 30, 47, 0.7);
border-radius: 8px;
}
a {
color: #7fccff;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #ffcc00;
}