23 lines
304 B
CSS
23 lines
304 B
CSS
body {
|
|
margin: 2rem;
|
|
padding: 2rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
background-color: #4a607e;
|
|
color: #FFF;
|
|
|
|
}
|
|
|
|
a {
|
|
color: #FFF;
|
|
}
|
|
|
|
.multitag {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 0.3rem;
|
|
}
|