diff --git a/style.css b/style.css new file mode 100644 index 0000000..3ae0a40 --- /dev/null +++ b/style.css @@ -0,0 +1,55 @@ +body { + font-family: "EB Garamond", serif; + line-height: 1.6; + color: #333; + margin: 0; + padding: 0; + background-color: #f4f4f4; +} +header { + text-align: center; + background: #444; + color: white; + padding: 2rem 0; +} +.profile-pic { + width: 150px; + height: 150px; + border-radius: 50%; + border: 3px solid white; +} +nav ul { + list-style: none; + background: #333; + display: flex; + justify-content: center; + padding: 0; + margin: 0; +} +nav ul li { + margin: 0 15px; +} +nav ul li a { + color: white; + text-decoration: none; + padding: 10px 15px; + display: block; +} +nav ul li a:hover { + background: #555; + border-radius: 5px; +} +section { + margin: 2rem auto; + max-width: 800px; + padding: 1rem; + background: white; + border-radius: 8px; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); +} +footer { + text-align: center; + padding: 1rem 0; + background: #444; + color: white; +}