body { font-family: "Segoe UI", "San Francisco", "Ubuntu", "Fira Sans", "Roboto", "Arial", "Helvetica", sans-serif; font-size: 15px; font-weight: 400; color: var(--main-text); background-color: var(--main-bg); line-height: 1.5; display: flex; flex-direction: row; --main-text: #e6e6e6; --sub-text: #aaaaaa; --line: #373737; --button: #929292; --highlight: #36b2b2; --main-bg:#181818; } .container { display: flex; flex-direction: column; width: 100%; padding-left: 20px; } .title { font-size: 22px; font-weight: 600; color: var(--sub-text); line-height: 2; } .caption { font-size: 13px; font-weight: 400; color: var(--sub-text); } hr { width: 100%; background-color: var(--line); height: 1px; border: none; margin-top: 20px; margin-bottom: 20px; } input { border: none; background-color: var(--main-bg); } a { font-size: 13px; color: var(--highlight); cursor: pointer; width: max-content; } a:hover { text-decoration: underline; }