30 lines
444 B
CSS
30 lines
444 B
CSS
.tos-container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.tos-container h1 {
|
|
font-size: 2rem;
|
|
font-weight: 200;
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
.tos-para {
|
|
margin-bottom: 1.25rem;
|
|
font-size: 1.35rem;
|
|
font-weight: 200;
|
|
line-height: 1.65;
|
|
color: var(--color-text-muted);
|
|
}
|
|
|
|
.tos-para:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.tos-para strong {
|
|
font-weight: 700;
|
|
color: var(--color-text);
|
|
}
|