@font-face {
    font-family: 'BABY';
    src: url('../font/BabyDoll.woff2') format('woff2'),
         url('../font/BabyDoll.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
	font-family: 'BABY', sans-serif;
	cursor: url('../images/cursor_normal.png'), auto;
	background: #ffffff center;
}

a, button, .clickable {
	cursor: url('../images/cursor_clickable_alt.png'), pointer;
}

p{
	text-align : center;
	color: white;
	font-size: 20px;
}
button{
	position: relative;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: black;
	font-size: 20px;
	font-family: 'BABY', sans-serif;
}
h1{
	text-align: center;
	font-size: 50px;
	color: rgb(22, 10, 131);
	text-shadow: 3px 3px 3px rgba(10, 1, 26, 0.534);
}
h2{
	text-align : center;
	font-size: 30px;
	color: rgb(2, 6, 24);
	text-shadow: 3px 3px 3px rgba(6, 0, 8, 0.404);
}

h3{
	text-align : center;
	font-size: 30px;
	color: white;
	text-shadow: 3px 3px 3px rgb(56, 16, 121);
}

h4{
	text-align : center;
	font-size: 22px;
	color: white;
	text-shadow: 3px 3px 3px rgb(56, 16, 121);
}

.image-row {
	display: flex;
	flex-wrap: wrap;
  	justify-content: center;
  	gap: 15px;
  	margin: 15px auto;
  	max-width: 1000px;
}

.logo {
  display: block;
  margin: auto;
  transition: transform 0.2s;
  width: 90%;
  	margin: auto;
}
.logo:hover{
	transform: scale(1.02);
}

a:link, a:visited {
  color: white;
}
a:hover {
  color: lightblue;
}
a:active {
  color: blue;
}

.comic{
    width: 1000px;
    margin: auto;
    filter: drop-shadow(16px 16px rgba(43, 47, 70, 0.74));
	outline-color:rgb(65, 65, 65);
	outline-style: outset;
    transition: width 0.2s, filter 0.2s;
}

.comic:hover{
    width: 1100px;
    margin: auto;
    filter: drop-shadow(16px 16px rgba(43, 47, 70, 0.452));
	outline-color:rgb(65, 65, 65);
	outline-style: outset;
}

.back{
	transition: transform 0.2s, filter 0.2s;
}
.back:hover{
	transform: scale(1.1);
}
