Created
February 8, 2025 10:24
-
-
Save Enotikus1933/1f6170990f193edad91b69836242aaa9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family: Arial, sans-serif; | |
background-color: #f2f2f2; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
margin: 0; | |
} | |
.card { | |
background-color: #fff; | |
padding: 30px; | |
border-radius: 10px; | |
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | |
text-align: center; | |
width: 300px; | |
} | |
.avatar { | |
width: 100px; | |
height: 100px; | |
border-radius: 50%; | |
object-fit: cover; | |
} | |
h1 { | |
margin: 15px 0 5px; | |
font-size: 24px; | |
} | |
p { | |
margin: 5px 0; | |
color: #555; | |
} | |
.contact-info a { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment