*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Rubik",sans-serif;
}
body{
    height: 100%;
    background: linear-gradient(
        to right,
        /* para renfine yak覺n ama vazge癟ildi
		#EDB75F 50%,
		#D1C2BB 50%
		*/
		#575ce5 50%,
		#f9fbfc 50%
		
    ) fixed;
}
.container{
    background-color: #ffffff;
    width: 400px;
    padding: 50px;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    box-shadow: 15px 30px 35px rgba(0,0,0,0.1);
    border-radius: 10px;
    -webkit-perspective: 300px;
    perspective: 300px;
}
.container2{
    background-color: #ffffff;
    padding: 20px;
	position: absolute;
    /*transform: translate(-50%,-50%);*/
    top: 100%;
    left: 5%;
	right: 5%;
	box-shadow: 15px 30px 35px rgba(0,0,0,0.1);
    border-radius: 10px;
    -webkit-perspective: 300px;
    perspective: 300px;
	margin-top:0cm;
	margin-right:0cm;
	margin-bottom:8.0pt;
	margin-left:0cm;
	line-height:150%;
	font-size:16px;
	font-family:"Calibri",sans-serif;
	style='font-size:19px;
	line-height:150%;
	font-family:"Open Sans",sans-serif;
	color:#3D3D3D;
}
.p{ margin-top:0cm;margin-right:0cm;margin-bottom:8.0pt;margin-left:0cm;line-height:150%;font-size:16px;font-family:"Calibri",sans-serif;

}

.span { font-size:19px;line-height:150%;font-family:"Open Sans",sans-serif;color:#3D3D3D;

}
	
/*üstte ve alt alta olan stats*/	
/*
.stats{
    text-align: right;
    color: #101020;
    font-weight: 500;
    line-height: 25px;
}
*/

/*yeni (paranın altında ve yan yana olan) stats ın başı*/
.stats{
    display: flex;
    color: #101020;
    font-weight: 500;
    padding: 20px;
    margin-bottom: 40px;
    margin-top: 55px;
    box-shadow: 0 0 20px rgba(0,139,253,0.25);

}
.stats p:nth-last-child(1){
  margin-left: 50%;
}
/*yeni stats sonu*/

.coin{
    height: 150px;
    width: 150px;
    position: relative;
    margin: 50px auto;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}
.coin img{
    width: 145px;
}

/*ilk yüz tura iken head ve tails*/

/*
.heads,.tails{
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.tails{
    transform: rotateX(180deg);
}
*/

/*ilk yüz yazı iken head ve tails sonu*/

.tails,.heads{
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.heads{
    transform: rotateX(180deg);
}

@keyframes spin-heads{
    0%{
        transform: rotateX(0);
    }
    100%{
        transform: rotateX(1980deg);
    }
}
@keyframes spin-tails{
    0%{
        transform: rotateX(0);
    }
    100%{
        transform: rotateX(2160deg);
    }
}

.buttons{
    display: flex;
    justify-content: space-between;
}
button{
    width: 120px;
    padding: 10px 0;
    border: 2.5px solid #424ae0;
    border-radius: 5px;
    cursor: pointer;
}
#flip-button{
    background-color: #424ae0;
    color: #ffffff;
}
#flip-button:disabled{
    background-color: #e1e0ee;
    border-color: #e1e0ee;
    color: #101020;
}
#reset-button{
    background-color: #ffffff;
    color: #424ae0;
}