22 lines
382 B
CSS
22 lines
382 B
CSS
|
|
@import url('https://fonts.googleapis.com/css2?family=Reggae+One&display=swap');
|
|
h1, h2, h3, h1.page-title {
|
|
font-family: 'Reggae One';
|
|
text-align: center;
|
|
}
|
|
table {
|
|
margin: auto;
|
|
max-width: 540px;
|
|
}
|
|
table td {
|
|
padding: 0.25rem 0.5rem;
|
|
}
|
|
tr td:nth-child(1) {
|
|
text-align: right;
|
|
}
|
|
p strong {
|
|
display: block;
|
|
text-align: center;
|
|
text-indent: 0;
|
|
}
|