35 lines
662 B
CSS
35 lines
662 B
CSS
.root {
|
|
padding-top: 80px;
|
|
padding-bottom: 80px;
|
|
}
|
|
|
|
.label {
|
|
text-align: center;
|
|
font-weight: 500;
|
|
font-size: 38px;
|
|
line-height: 1;
|
|
margin-bottom: calc(1.5 * var(--mantine-spacing-xl));
|
|
color: var(--mantine-color-gray-2);
|
|
|
|
@media (max-width: $mantine-breakpoint-sm) {
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
|
|
.description {
|
|
max-width: 500px;
|
|
margin: auto;
|
|
margin-top: var(--mantine-spacing-xl);
|
|
margin-bottom: calc(1.5 * var(--mantine-spacing-xl));
|
|
}
|
|
|
|
.title {
|
|
font-family: 'Outfit', var(--mantine-font-family);
|
|
text-align: center;
|
|
font-weight: 500;
|
|
font-size: 38px;
|
|
|
|
@media (max-width: $mantine-breakpoint-sm) {
|
|
font-size: 32px;
|
|
}
|
|
} |