44 lines
835 B
CSS
44 lines
835 B
CSS
.container {
|
|
display: grid;
|
|
gap: var(--Spacing-x7);
|
|
}
|
|
|
|
.script {
|
|
transform: rotate(-2deg);
|
|
}
|
|
|
|
.card {
|
|
align-items: center;
|
|
background-color: var(--Base-Background-Normal);
|
|
border: 1px solid var(--Base-Border-Subtle);
|
|
border-radius: var(--Corner-radius-Medium);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x1);
|
|
justify-content: center;
|
|
min-height: 280px;
|
|
padding: var(--Spacing-x7) var(--Spacing-x3);
|
|
text-align: center;
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-wrap: balance;
|
|
}
|
|
|
|
.scriptTitle {
|
|
transform: rotate(-3deg);
|
|
}
|
|
|
|
.subtitle {
|
|
color: var(--Theme-Primary-Light-On-Surface-Text);
|
|
font-family: var(--typography-Body-Regular-fontFamily);
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
line-height: 150%;
|
|
letter-spacing: 0.096px;
|
|
text-align: center;
|
|
margin: 0;
|
|
}
|