Spaces:
Sleeping
Sleeping
File size: 928 Bytes
c715979 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | .belief-statement {
min-height: 50vh;
padding: 120px 80px;
background-color: #3d3d3d;
display: flex;
align-items: center;
justify-content: center;
}
.belief-container {
max-width: 1400px;
margin: 0 auto;
text-align: center;
}
.leaf-icon {
margin-bottom: 50px;
display: inline-block;
}
.belief-text {
font-family: 'Cormorant Garamond', serif;
font-size: 52px;
font-weight: 400;
line-height: 1.5;
color: #ffffff;
letter-spacing: -0.5px;
max-width: 1300px;
margin: 0 auto;
}
.belief-subtext {
font-family: 'DM Sans', sans-serif;
font-size: 18px;
font-weight: 400;
font-style: italic;
color: #b8c9c0;
margin-top: 30px;
}
@media (max-width: 1200px) {
.belief-text {
font-size: 42px;
}
}
@media (max-width: 768px) {
.belief-statement {
padding: 90px 40px;
}
.belief-text {
font-size: 34px;
}
.leaf-icon svg {
width: 50px;
height: 50px;
}
}
|