/*CSS*/

body {
	text-align: center;
	background-color: #58595b;
}

#slot1, #slot2, #slot3{
	display: inline-block;
	margin-top: 5px;
	margin-left: 15px;
	margin-right: 15px;
	background-size: 150px;
	width: 150px;
	height: 150px;
}

table {
	width: 90%;
	padding: 20px 0px 20px 0px;
	border-collapse: collapse;
}

.tableCenter {
	margin-left:auto; 
	margin-right:auto;
}

td {
	margin: 5px;
	width: 10%;
	text-align: center;
	font-size: 16pt;
	vertical-align: top;
}

main{
	border-radius: 12px;
	background-color: rgb(45, 78, 226);
	margin-top: 30px;
	padding-top: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: calc((100% - 580px) / 2);
	width: 550px;
}

.slots{
	border-radius: 12px;
	background-color: #58595b;
}

.status{
	margin-bottom: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	border-radius: 12px;
	background-color: rgb(248, 127, 56);
	color: #FFFFFF;
	font-size: 30px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

.pokerchip {
	padding: 5px 0px 20px 0px;
	outline: none;


}
.pokerchip:active{
	transform: translateY(4px);
}

.button {
	display: inline-block;
	border-radius: 12px;
	background-color: rgb(248, 127, 56);
	border: none;
	color: #FFFFFF;
	outline: none;
	text-align: center;
	font-size: 28px;
	margin: 20px 20px 20px 20px;
	padding: 20px 20px 20px 20px;
	width: 200px;
	cursor: pointer;
	box-shadow: 0 9px #58595b;
	
  }
  
.button span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
  }
  
.button span:after {
	content: '\00bb'; /*the double arrow */
	position: absolute;
	font-size: 42px; /*size of the double arrow*/
	opacity: 0;
	top: -12px; /*positioning the arrow vertically. -12px is extremely close but not perfect. */
	right: -20px;
	transition: 0.5s;
  }
.button:hover {
	background-color: rgb(245, 103, 21);
  }

.button:active{
	box-shadow: 0 5px #3f4041;
	transform: translateY(4px);
  }

.button:hover span {
	padding-right: 25px;
  }
  
.button:hover span:after {
	opacity: 1;
	right: 0;
  }

.a1{
	background-image: url("../images/slots/seven.png");
}
.a2{
	background-image: url("../images/slots/cherry.png");
}
.a3{
	background-image: url("../images/slots/strawberry.png");
}
.a4{
	background-image: url("../images/slots/diamond.png");
}
.a5{
	background-image: url("../images/slots/clover.png");
}
.a6{
	background-image: url("../images/slots/star.png");
}
.a7{
	background-image: url("../images/slots/crown.png");
}

