.wrapper{
		display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
    background-image: linear-gradient(-134deg, #3023AE 0%, #C86DD7 100%);
}
.grid-row1{
	grid-column: 2/5;
	grid-row: 1/2;
}
#first_image{
	height: 100px;
	width: 100px;
}
#second_image{
  height: 225px;
  width: 930px;
}
.grid-row2{
	grid-column: 2/11;
	grid-row: 2/4;
	border: 1px solid red;
}
.grid-row3{
	grid-column: 2/11;
	grid-row: 4/8;
	border: 1px solid red;
	padding: 15px;
}
.news{
  grid-column: 2/11;
  grid-row: 8/9;
}
.back{
	grid-row: 1/2;
	grid-column: 10/12;
}

/* code for back navigator*/
.back{
  float: right;
  text-align: center;

  vertical-align: middle;
}

.back a {
  display: inline-block;
  border-radius: 50%;
}
 a:hover .left{
  border: 0.5em solid #e74c3c;
}

 a:hover .left:after {
  border-top: 0.5em solid #e74c3c;
  border-right: 0.5em solid #e74c3c;
}

.left {
  display: inline-block;
  width: 4em;
  height: 4em;
  border: 0.5em solid #333;
  border-radius: 50%;
  margin-right: 1.5em;
  margin-top: 5px;
}

.left:after {
  content: '';
  display: inline-block;
  margin-top: 0.9em;
  margin-left: 0.9em;
  width: 1.4em;
  height: 1.4em;
  border-top: 0.5em solid #333;
  border-right: 0.5em solid #333;
  -moz-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* table styling */
table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #dddddd;
    text-align: center;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

h2{
	color: red;
}
span.clr{
	color: blue;
}
.title h1{
  color: white;
}
.news{
  height: 50px;
  background-color: red;
}
#ticketprice{
  padding: 13px;
  animation-direction: alternate-reverse;
}


.ticketprice {
 height: 50px;  
 overflow: hidden;
 position: relative;
}
.ticketprice h3 {
 font-size: 3em;
 color: limegreen;
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);  
 transform:translateX(100%);
 /* Apply animation to this element */  
 -moz-animation: ticketprice 15s linear infinite;
 -webkit-animation: ticketprice 15s linear infinite;
 animation: ticketprice 15s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes ticketprice {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes ticketprice {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes ticketprice {
 0%   { 
 -moz-transform: translateX(100%); /* Firefox bug fix */
 -webkit-transform: translateX(100%); /* Firefox bug fix */
 transform: translateX(100%);     
 }
 100% { 
 -moz-transform: translateX(-100%); /* Firefox bug fix */
 -webkit-transform: translateX(-100%); /* Firefox bug fix */
 transform: translateX(-100%); 
 }
}