@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap'); html, body { padding: 0; margin: 0; font-family: 'Red Hat Text'; font-size: 1.1em; } h1, h2, h3, h4, h5 { font-family: 'Red Hat Display'; } a { color: inherit; text-decoration: none; } * { box-sizing: border-box; } hr { width: 100%; color: rgba(0,0,0,0.1); } /* variables */ :root { --padding-large: 50px; } /* layout */ .page { background-color: #fff; } .container { max-width: 1000px; margin: auto; } .content { border-radius: 1em; background-color: #F3F4F6; box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1); padding: 50px; display: flex; flex-direction: column; gap: var(--padding-large); }