29 lines
429 B
CSS
29 lines
429 B
CSS
.about-me {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.about-me__note {
|
|
text-align: center;
|
|
font-size: 120%;
|
|
max-width: 400px;
|
|
min-height: 3em;
|
|
}
|
|
|
|
.about-me__links {
|
|
padding: 0;
|
|
margin-top: 4em;
|
|
list-style: none;
|
|
text-align: center;
|
|
}
|
|
|
|
.about-me__link {
|
|
display: inline-block;
|
|
}
|
|
|
|
.about-me__link + .about-me__link {
|
|
margin-left: 1em;
|
|
}
|