
/* BASE & HOME PAGE */

body {
	background-color: #87CEEB;
	font-family: Comic Sans MS, Arial;
	color: black;
	line-height: 1.5;
}

.banner {
	background-image: url("../imgs/lolcatzcomix-banner.webp");
	background-size: 800px;
	width: 700px;
	padding: 20px;
}

.banner h1 {
	font-size: 48px;
	margin: 0;
}

.menu {
	width: 700px;
	padding: 10px;
	margin-bottom: 20px;
}

.menu a {
	text-decoration: none;
	color: black;
	font-weight: bold;
	margin: 10px;
	padding: 5px 10px;
	border: 2px solid black;
	background: #FFD700;
}

.menu a:hover {
	background: #FFA500;
}

marquee {
	width: 700px;
	padding: 10px;
	font-weight: bold;
}

.content {
	width: 700px;
	background: white;
	padding: 20px;
}

.footer {
	margin-top: 20px;
	font-size: 12px;
}

ul {
	list-style-type: square;
}

/* CHARACTERS LIST */

.card {
	width: 150px;
	text-align: center;
	padding: 10px;
	border: 2px solid black;
	background: #F5F5F5;
}

.avatar {
	width: 120px;
	height: 120px;
	margin-bottom: 5px;
}

.card a {
	text-decoration: none;
	color: black;
	font-weight: bold;
}

.card:hover {
	background: #FFD700;
	text-decoration: underline dashed black 2px;
}

/* CHARACTER PROFILE */

.profile-avatar {
	width: 250px;
	text-align: center;
	padding: 20px;
}

.big-avatar {
	width: 200px;
}

.profile-info {
	padding: 20px;
	text-align: left;
}

/* SCROLLBAR */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #87CEEB;
}

::-webkit-scrollbar-thumb {
  background: #FFD700;
  border-radius: 6px;
  transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: #FFD700;
  box-shadow: 0 0 8px #FFD700;
}

/* FOR FIREFOX */
* {
  scrollbar-width: thin;
  scrollbar-color: #FFD700 #87CEEB;
}