50 lines
No EOL
744 B
CSS
50 lines
No EOL
744 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;
|
|
}
|
|
|
|
.subtitle {
|
|
text-align: center;
|
|
font-size: 1.4em;
|
|
color: #555;
|
|
}
|
|
|
|
.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;
|
|
} |