@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");:root{--main-font:"Roboto",sans-serif;--red:#e84142;--white:#fff;--black:#000}*{box-sizing:border-box}body{font-family:var(--main-font);padding:0;background-color:var(--white)}body,h1,h2,h3,h4,h5,h6,p,ul{margin:0}ul{list-style:none;padding:0}a{color:inherit;text-decoration:none}button{border:none}.flex{display:flex}.justifyCenter{justify-content:center}.justifyBetween{justify-content:space-between}.alignCenter{align-items:center}.flexCol{flex-direction:column}.fullWidth{width:100%}.underline{text-decoration:underline}::-webkit-scrollbar{width:10px}::-webkit-scrollbar-track{background:var(--white)}::-webkit-scrollbar-thumb{background:var(--red)}::-webkit-scrollbar-thumb:hover{background:#b33333}.loadingEllipsis:after{content:"\2026";position:absolute;width:0;overflow:hidden;-webkit-animation:ellipsisAnimation 1s steps(4) infinite;animation:ellipsisAnimation 1s steps(4) infinite}@-webkit-keyframes ellipsisAnimation{to{width:.9em}}@keyframes ellipsisAnimation{to{width:.9em}}.darkmode{--black:#fff;--white:#000}