hp/style/index.css

44 lines
666 B
CSS
Raw Normal View History

2025-01-10 12:11:27 +00:00
body {
display: flex;
justify-content: center;
align-items: center;
height: 100svh;
font-family: Arial, sans-serif;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 30px;
gap: 30px;
}
.profile-image {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #ddd;
}
.title {
font-size: 1.8em;
}
.links {
display: flex;
flex-direction: column;
align-items: center;
}
.links a {
text-decoration: none;
color: #007BFF;
font-size: 1.2em;
line-height: 1.5;
}
.links a:hover {
text-decoration: underline;
}