minor updates

This commit is contained in:
2025-06-23 00:13:41 -05:00
parent ac44ada496
commit 86cc1260c1
2 changed files with 18 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ header {
.nav-content {
max-width: 1200px;
margin: 0 auto;
margin: 0;
width: 100%;
}
@@ -112,6 +112,21 @@ h1 {
font-weight: bold;
}
.hero a {
display: inline-block;
text-decoration: none;
color: var(--text-color);
background-color: var(--primary-color);
padding: 0.75rem 1.5rem;
border-radius: 4px;
transition: background-color 0.2s ease;
}
.hero a:hover {
background-color: var(--secondary-color);
transition: background-color 0.2s ease;
}
.features {
padding: 4rem 0;
}