img{
	width: 200px;
	border-radius: 30px;
}
.ticket{
	font-size: 18px;
	overflow: auto;
	display: -webkit-inline-box;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	width: 260px;
	background: linear-gradient(180deg,rgba(255, 255, 255, .6) 0%, rgba(184, 184, 184, .6) 50%);
	border-radius: 30px;
	font-family: Rubik, SQ Market, Helvetica, Arial, sans-serif;
	padding: 10px;
	margin: 5px;
	backdrop-filter: blur(12px);
}
.notTicket{
	font-size: 18px;
	overflow: auto;
	display: -webkit-inline-box;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	width: 460px;
	background-image: url("images/rp.jpg");
	background-size: cover;
	background-color: rgba(0, 0, 0, .6);
	background-blend-mode: multiply;
	border-radius: 30px;
	font-family: Rubik, SQ Market, Helvetica, Arial, sans-serif;
	padding: 10px;
	margin: 5px;
}
.title{
    line-height: 20px;
}
.details{
	font-size: 13px;
}
.price{
    line-height: 20px;
    font-weight: 600;
}
.buyBtn{
	box-shadow: 3px 3px 5px #00000033 inset;
	display: inline-block;
	padding: 15px;
    color: #FFF;
    background-color: #00b23b;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
}
.buyBtn:Hover{
	background-color: #9aec48;
	color: #000;
}
h1{
	color: #FFF;
	text-shadow: 3px 3px 5px #000000;
	font-family: Rubik, SQ Market, Helvetica, Arial, sans-serif;
}
body{
    background-image: url(images/collage.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    animation: scroll-background 60s linear infinite;
}
@keyframes scroll-background {
    0% {
    	background-position: 0 0;
    }
    100% {
    	background-position: -2000px 0; /* adjust the value to control the speed and distance of the scroll */
    }
}