/* 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;
	font-size: 100%;
	font: inherit;
	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;
}
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;
}
body{
    background: #150F01 ;
	font-family: 'Press Start 2P', cursive;
}
*{
	box-sizing: border-box;
}
.cryptos-bar-container{
	height: 210px;
	background: #190E03 0% 0% no-repeat padding-box;
	border-top: 2px solid #3B2A17;
	border-bottom: 2px solid #3B2A17;
	padding:25px 20px 0;
	margin-bottom:40px;
	width: 100%;
	overflow: auto;
	display: flex;
}
.cryptos-bar-container::-webkit-scrollbar {
    display: none;
}
.logo img{
	max-width: 256px;
	width: 90%;
	height: auto;
	margin: 100px auto;
	display: block;
}
.footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFE8C9;
    font-size: 11px;
	padding: 100px 20px 50px;
	border-top: 3px solid #3B2A17;
	margin-top:60px;
}
.footer img{
	max-width: 235px;
	width: 90%;
	height: auto;
	display: block;
	margin-bottom: 40px;
}
.cryptos-decrition-text{
	max-width: 1000px;
	width: 90%;
	text-align: center;
	font-size: 11px;
	color:#FFE8C9;
	margin: 40px auto;
	line-height: 1.6;

}
.cryptos-decrition-text p{
	margin-bottom: 30px;
}
.cryptos-decrition-text h1{
	margin-bottom: 30px;
	font-size: 13px;
}
.cryptos-bar-2{
	color: #080808;
    background: #FDB326;
    text-align: center;
    font-size: 18px;
    align-items: center;
    padding: 30px;
    justify-content: center;
    margin: 90px 0;
    font-variant: all-petite-caps;
}
.cryptos-bar-2 strong{
	font-size: 30px;
	font-weight: bold;
	padding-right: 5px;
}
.crypto-items{
	align-items: center;
}
.crypto-item{
	width: 110px;
	height: 110px;
}
.crypto-item:before{
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	top:-30px;
	left:50%;
	margin-left: -7px;
	background: #989898;
	border: 2px solid #3B3B3B;
	border-radius: 50%;
}
.crypto-item.sold:before{
	background: #83EB29;
	border: 2px solid #285800;
	border-radius: 50%;
}
.cryptos-canvas-box{
	max-width: 640px;
	max-height: 640px;
	width: 95vw;
	height: 95vw;
	margin: auto;
}
.cryptos-canvas-section > p{
	text-align: center;
	color: #FFE8C9;
	font-size: 12px;
	margin-bottom: 60px;
}
#cryptos-canvas{
	background: #fff;
}
#cryptos-canvas > g{
	opacity: 0;
}

@media (max-width: 767px){
.cryptos-bar-2{
	flex-direction: column;
	margin-bottom: 60px;
	margin-top: 60px;
}
.logo img {
    margin: 40px auto;
}
.cryptos-canvas-section > p {
    margin-bottom: 30px;
    line-height: 1.8;
}
.footer {
    padding: 50px 20px 50px;
    margin-top: 60px;
}
}


#cryptos-canvas > g.sold{
	opacity: 1;
}