 @import url('https://fonts.googleapis.com/css2?family=Jolly+Lodger&display=swap');

 html {
	font-size:16px;
	text-align: center;
}

a {
	text-decoration: none;
}

body {
	font-family: calibri;
	height:100vh;
	padding:0;
	font-size: 1rem;
	/*margin:1rem 0 0 0;*/
	box-sizing: border-box;
}

header {
	display: grid;
	grid-template-columns: repeat(3,1fr);
}

/*header>div {*/
	/*padding:1rem;*/
/*}	*/

#middle, #score {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:.5rem;
}


button {
	margin-left: 1rem;
}

h1 {
	margin-top: 0;
	margin-bottom: 0;
    font-family: 'Jolly Lodger', cursive;
    font-size: 2.5rem;
    color: #ff0022;
}

#wrapper {
	width:1000px;
	margin: 1rem auto;
}

main {
	display: grid;
	grid-template-columns: 300px 400px 300px;
	grid-template-rows: 180px 120px 270px;
	position: relative;
	border-radius: 20px;
	border:2px solid hsl(0,0%,70%);
	box-sizing: border-box;
	margin: 1rem 0;
 	/*background-image: repeating-linear-gradient(to left, hsla(0,0%,100%,0) 0%, hsla(0,0%,100%,0)   6%, hsla(0,0%,100%, .1) 7.5%),
    repeating-linear-gradient(to left, hsla(0,0%,  0%,0) 0%, hsla(0,0%,  0%,0)   4%, hsla(0,0%,  0%,.03) 4.5%),
    repeating-linear-gradient(to left, hsla(0,0%,100%,0) 0%, hsla(0,0%,100%,0) 1.2%, hsla(0,0%,100%,.15) 2.2%),
    linear-gradient(180deg, hsl(0,0%,78%)  0%, 
    hsl(0,0%,90%) 47%, 
    hsl(0,0%,78%) 53%,
    hsl(0,0%,70%)100%);*/
    /*background-color: #00ccd6;*/
    /*background-size: 50px 50px;*/
	background-image:
	linear-gradient(180deg, #ffffffd1, #ffffff00 5% 95%, #929292bd),
	repeating-linear-gradient(90deg, transparent 0 25px, #caf93a 25px 50px);

	-webkit-transition: background .2s ease-in-out;
	transition: background .2s ease-in-out;

    background-color: #ff6464;
	background-image:
	linear-gradient(180deg, #ffffffd1, #ffffff00 5% 95%, #929292bd),
	repeating-linear-gradient(90deg, transparent 0 25px, #transparent 25px 50px);


}

.red {
    background-color: #ff6464;
	background-image:
	linear-gradient(180deg, #ffffffd1, #ffffff00 5% 95%, #929292bd),
	repeating-linear-gradient(90deg, transparent 0 25px, #transparent 25px 50px);

}


main:after{
	content: '';
	position: absolute;
	top: 8px;
	left: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 16px);
	border-radius: 20px;
	background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0),rgb(255 255 255 / 31%));
}

main>div {
	position: relative;
}

.center {
	overflow: hidden;
	background-color: #fff;
    z-index: 1;
}

.side {
	grid-row: span 3;
	/*z-index: 100;*/
}

main>div:not(.center) {
	/*background: #FF543D4a;*/
	/*background: linear-gradient(135deg, #FF543D 0%, #E64040 62%, #751010 100%);*/
}


/*main:before {
	left:0;

}

main:after {
	right:0;
}*/

#lineup {
	margin-top: 2rem;
	background-color: #fff;
	height: 130px;
	width: 600px;
	border:1px solid black;
	box-sizing: border-box;
}

img {
	position: absolute;
	/*left:-300px;*/
	opacity: 0;
  }

.top {
	bottom:20px;
}

.middle {
	height:100%;
}

.bottom {
	top:20px;
}

.centered {
    transform: translateX(-50%);
}

