Characters
diff --git a/styles.css b/styles.css
index 60e024a..c44e331 100644
--- a/styles.css
+++ b/styles.css
@@ -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;
}