:root {
  --background: #0e141b;
  --background-secondary: #141c24;
  --text: #ffffff;
  --text-secondary: #7e8c9a;
  --primary: #5fdde5;
  --secondary: #f6acc8;
  --secondary-accent: #ff0a78;
  --error: #e43f5a;

  --progress-color4: #baf1a1;
  --progress-color1: #f5a7a7;
  --progress-color2: #ffd8a6;
  --progress-color3: #63b7af;
  --progress-color0: #ff0a78;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  padding: 0;
  margin: 0;
  background-color: var(--background);
}

body {
  font-family: 'Ubuntu', sans-serif;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  color: var(--text);
  font-family: 'Ubuntu', sans-serif;
}

a,
a:visited {
  color: var(--text);
}
a:hover {
  color: var(--primary);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
p {
  margin: 1rem 0rem;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
  background-color: var(--background);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #ff6aad6e;
}
input[type='checkbox'],
input[type='radio'] {
  padding: 0;
  margin: 0;
}

textarea {
  overflow: scroll;
  padding: 0;
  margin: 0;
  width: 100%;
  resize: none;
  outline: none;
  -webkit-appearance: none;
  background: none;
  color: white;
  border: none;
  font-size: 16px;
}
