:root {
	--matrixGreen: #b8fe58;
	--marge:10px;
	--widthObject:335px;
	--red:#e2571f;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
html {
	font-size: 15px;
	background: #000 ;
	color: #fff;
	font-family: Andika;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1px;
}
html, body {height: 100%; position: relative;}
body {
	

}
p,
a,
li{
	font-family: Andika;
	line-height: 1.5;
	font-weight: 400;
}
li {
	list-style: none;
}
strong {
	font-weight: 700;
}
a {
	text-decoration: none;
	color: inherit;
}
main {
	position: absolute;
	top: var(--marge);
	left: var(--marge);
	right:var(--marge);
	bottom: var(--marge);
	border-radius: 11px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.capital-wrap {
	width: var(--widthObject);
	height: var(--widthObject);
	border-radius: 50%;
	margin-bottom: 45px;
	background:var(--matrixGreen);
	display: flex;
	justify-items: center;
	justify-content: center;
	align-items: center;
	align-content: center;
}
.capital-wrap > div {
background:#000;
width: 305px;
	height: 305px;
	border-radius: 50%;

	display: flex;
	justify-items: center;
	justify-content: center;
	align-items: center;
	align-content: center;
}
h1 {
font-size: 5rem;
font-weight: 500;
font-family: Advent Pro;
color: var(--matrixGreen);
}
p {
	margin: 0 0 5px 0;
	font-size: 10px;
   text-transform: uppercase;
}
.last-trades {
	height: 220px;
	max-width: var(--widthObject);
	width: 100%;
	/*border: 2px solid var(--matrixGreen);*/
	border-radius: 12px;
	background: #000;
}
.last-trades li {font-size: 10px;display: flex;justify-content: space-between; padding: 15px 0px;border-bottom: 1px dotted #fff; line-height: 1;}
.last-trades li .dot {
	width: 8px;
	height: 8px;
	vertical-align: bottom;
	border-radius: 50%;
	display: inline-block;
	background: var(--matrixGreen);
	margin-right: 4px;
}
.last-trades li.loss .dot {
	background: var(--red);
}
.last-trades li.win i {
color: var(--matrixGreen);
}
.last-trades li.loss i {
	color: var(--red);
}
