@charset "utf-8";
/* CSS Document */

 

.coin-arm {
	background-image: url('web_coin.png');
	background-color: #000000;
	background-size: contain;	
	background-position: center center;
	background-repeat: no-repeat;
}

.coin-text {
	font-family: 'Dancing Script', cursive;
	font-size: 100px;
}
@font-face {
	  font-family: 'vivaldi-regular';
	  src: url('vivaldi.ttf') format('ttf');
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
	.coin-arm {
		background-image: url('web_coin_sm.png');
		background-size: contain;	
		background-position: center center;
		background-repeat: no-repeat;
 	}
}

/* Portrait */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
	.coin-arm {
		background-image: url('web_coin_sm.png');

	}  
}
