@font-face {
    font-family: 'TASS';
    src: url('../font/Tassisaac.woff2') format('woff2'),
         url('../font/Tassisaac.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
	font-family: 'TASS', sans-serif;
	cursor: url('../images/cursor_normal.png'), auto;
	background: #ffffff;
	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: 50px;
	color: rgb(0, 0, 0);
	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;
  transition: transform 0.2s;
  width: 95%;
  	margin: auto;
}
.logo:hover{
	transform: scale(1.02);
}

.gif{
	transition: transform 0.2s, filter 0.2s;
	filter: drop-shadow(16px 16px rgba(61, 12, 3, 0.205));
	outline-color:rgb(129, 73, 9);
	outline-style: outset;
}
.gif:hover{
	transform: scale(1.1);
	filter: drop-shadow(16px 16px rgba(100, 27, 14, 0.062));
}

.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));
}