diff --git a/style.css b/style.css index 8b13789..f2e4249 100644 --- a/style.css +++ b/style.css @@ -1 +1,64 @@ +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + background-color: #f5f7fa; + padding: 50px; + display: flex; + justify-content: center; + align-items: center; +} + +.intro-container { + display: flex; + background-color: white; + border-radius: 15px; + box-shadow: 0 10px 20px rgba(0,0,0,0.1); + padding: 30px; + max-width: 800px; + width: 100%; +} + +.profile img { + border-radius: 50%; + width: 150px; + height: 150px; + object-fit: cover; + margin-right: 30px; +} + +.intro-text { + flex: 1; +} + +.intro-text h1 { + font-size: 2rem; + color: #333; + margin-bottom: 10px; +} + +.intro-text p { + font-size: 1rem; + color: #555; + margin-bottom: 20px; +} + +.skills { + list-style: none; + display: flex; + flex-wrap: wrap; + gap: 10px; +} + +.skills li { + background-color: #007bff; + color: white; + padding: 6px 12px; + border-radius: 20px; + font-size: 0.9rem; +}