@font-face {
    font-family: 'ORANGEKID';
    src: url('../font/orangekid-webfont.woff2') format('woff2'),
         url('../font/orangekid-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
	font-family: 'ORANGEKID', sans-serif;
	cursor: url('../images/cursor_normal.png'), auto;
	background: black;
}

a, button, .clickable {
	cursor: url('../images/cursor_clickable_alt.png'), pointer;
}

.image-row {
	display: flex;
	flex-wrap: wrap;
  	justify-content: center;
	align-items: center;
  	gap: 25px;
  	margin: 0px auto;
  	max-width: 1000px;
	height: 100px;
	width: 1200px;
 	flex-shrink: 0;
}

.ps {
	transition: transform 0.2s, filter 0.2s;
	transform: translateY(10px);
}

.ps:hover {
	transform: scale(1.1) translateY(20px);
}

h2{
	text-align : center;
	font-size: 40px;
	color: white;
	text-shadow: 3px 3px 3px rgb(56, 16, 121);
}

.back{
	transition: transform 0.2s, filter 0.2s;

}
.back:hover{
	transform: scale(1.1);
}