50 lines
635 B
CSS
50 lines
635 B
CSS
.app {
|
|
width: 100%;
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1100px;
|
|
}
|
|
|
|
.subtitle {
|
|
color: #af9363;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.header {
|
|
font-size: 40px;
|
|
font-weight: bold;
|
|
margin: 0;
|
|
}
|
|
|
|
.cards-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.cards {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
padding: 20px;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.card {
|
|
background-color: #fff;
|
|
padding: 16px 20px;
|
|
border-radius: 40px;
|
|
/* text-align: left; */
|
|
}
|
|
|
|
.card span {
|
|
font-size: 18px;
|
|
}
|