@font-face {
    font-family: 'ISAAC';
    src: url('../font/IsaacGame.woff2') format('woff2'),
         url('../font/IsaacGame.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
	font-family: 'ISAAC', sans-serif;
	cursor: url('../images/cursor_normal.png'), auto;
	background: #b0e0e6;
	background-size: cover;
	text-align : center;
	width: 66%;
  	margin: auto;
}

a, button, .clickable {
	cursor: url('../images/cursor_clickable_alt.png'), pointer;
}

p{
	text-align : center;
	color: white;
	font-size: 20px;
}
h1{
	text-align: center;
	font-size: 50px;
	color: white;
	text-shadow: 3px 3px 2px rgba(37, 38, 56, 0.267);
}
h2{
	text-align : center;
	font-size: 30px;
	color: rgb(31, 17, 83);
	text-shadow: 3px 3px 3px rgba(37, 38, 56, 0.267);
}

h3{
	text-align : center;
	font-size: 40px;
	color: rgb(102, 102, 102);
	text-shadow: 3px 3px 3px rgba(37, 38, 56, 0.027);
}


.image-row {
	display: flex;
	flex-wrap: wrap;
  	justify-content: center;
  	gap: 45px;
  	margin: 45px auto;
  	max-width: 1000px;
}

.logo {
    height: auto;
    display: block;
    margin: auto;
    filter: drop-shadow(3px 3px rgba(32, 24, 143, 0.582));
    width: 95%;
    margin: auto;
    transition: transform 0.2s, filter 0.2s;
    
}
.logo:hover{
	transform: scale(1.02);
    filter: drop-shadow(5px 5px rgba(64, 83, 192, 0.274));
}

.gif{
    width: 50%;
}

.back{
	transition: transform 0.2s, filter 0.2s;

}
.back:hover{
	transform: scale(1.1);
}

.center-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
	filter: drop-shadow(5px 5px rgba(61, 12, 3, 0.205));
}