37 lines
745 B
CSS
37 lines
745 B
CSS
body {
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-family: 'Montserrat', Helvetica, Arial, sans-serif;
|
|
background: #0181C4;
|
|
}
|
|
.card {
|
|
background: #ffffff;
|
|
padding: 2.5rem 3rem;
|
|
border-radius: 0;
|
|
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
|
|
max-width: 520px;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
.title {
|
|
font-size: 1.25rem;
|
|
color: #101F2D;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.ripe-title {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
margin-bottom: 0.5rem;
|
|
color: #101F2D;
|
|
}
|
|
.ripe-item {
|
|
font-size: 0.95rem;
|
|
color: #101F2D;
|
|
margin: 0.2rem 0;
|
|
} |