import styled from 'styled-components'; export const CardHeaderContainer = styled.div` display: flex; justify-content: center; align-items: center; flex-direction: column; width: 100%; text-align: center; `; export const CardHeaderText = styled.h2` font-weight: bold; font-size: 24px; margin: 10px; color: black; width: 99%; padding-bottom: 5px; border-bottom: 1px solid grey; `;