:root { --color-background-Light: #f5f8fa; --color-background-Dark: #202124; --color-Primary-Light: #ffffff; --color-Primary-Dark: #41444a; --color-Accent: #00bf63; --color-Accent-darker: #07a65a; } .Destacado { color: var(--color-Accent); } .container { max-width: 70rem; align-items: center; margin: 0 auto; place-items: center; } * { box-sizing: border-box; font-family: "Outfit", sans-serif; margin: 0; padding: 0; } body { background-color: var(--color-background-Light); width: 100%; height: 100%; } #Construcao_img { display: block; max-width: 50%; border-radius: 12px; } .sessao { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; place-items: center; border-radius: 28px; } .titulo { margin-top: 1rem; font-size: 4rem; } .texto { font-size: 2rem; margin-top: 1rem; margin-bottom: 2rem; } .button { font-weight: bold; text-decoration: none; padding: 10px; background-color: var(--color-Accent); border-radius: 28px; margin-bottom: 2rem; color: black; }