hp/style/index.css
2025-01-07 13:47:39 +09:00

44 lines
No EOL
666 B
CSS

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;
}