21 lines
425 B
CSS
21 lines
425 B
CSS
.card {
|
|
background-color: var(--Main-Grey-10);
|
|
border-radius: var(--Corner-radius-xLarge);
|
|
color: var(--Main-Brand-Burgundy);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: var(--Spacing-x2);
|
|
}
|
|
|
|
.points {
|
|
font-size: var(--typography-Title-2-Mobile-fontSize);
|
|
margin: 0;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.points {
|
|
font-size: var(--typography-Title-2-Desktop-fontSize);
|
|
}
|
|
}
|