70 lines
1.0 KiB
CSS
70 lines
1.0 KiB
CSS
.app {
|
|
width: 100%;
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1100px;
|
|
padding: 12px;
|
|
}
|
|
|
|
.subtitle {
|
|
color: #af9363;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.header {
|
|
font-size: 40px;
|
|
font-weight: bold;
|
|
margin: 0;
|
|
padding-top: 12px;
|
|
}
|
|
|
|
.cards-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.cards {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
padding-top: 20px;
|
|
width: 100%;
|
|
max-width: 800px;
|
|
}
|
|
|
|
.card {
|
|
background-color: #fff;
|
|
padding: 16px 20px;
|
|
border-radius: 40px;
|
|
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.card span {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.show-more-button {
|
|
background-color: #af9363;
|
|
color: #fff;
|
|
border-radius: 6px;
|
|
padding: 14px 24.5px;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: 15px;
|
|
letter-spacing: 1.2px;
|
|
font-family: "Assistant", sans-serif;
|
|
border: 1px solid #f8f5ee;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.show-more-button:hover {
|
|
border: 1px solid #af9363;
|
|
}
|