*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
html{
	font-size: 14px;
}
h1 {
	font-size: 3rem;
	letter-spacing: 3px;
	text-align: center;
}
h2 {
	font-size: 2rem;
	text-transform: capitalize;
}
button{
	background-color: orangered;
}
#about-website{
	text-align: center;
	font-size: 1.2rem;
	padding: 10px 10px;
}
.loading-pokemon-text{
	font-size: 1.2rem;
	text-align: center;
	padding: 0px 0px 10px 0px;
	color: black;
}
#sticky-container{
	border-bottom: 1px solid #ebebeb;
	position: sticky;
	top: 0;
	z-index: 1;
	padding: 4px;
	background-color: white;
}
#pokemon-pokedex-region-container{
	width: 300px;
	margin: auto;
}
#pokemon-pokedex-region-container button{
	width: 60px;
	margin: 3px 3px;
	border: 0px;
	color: white;
	padding: 10px;
	outline: none;
	font-size: 1rem;
}
#pokemon-pokedex-region-container button:hover{
	cursor: pointer;
	animation: bounce 0.5s linear;
}
.pokedex-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto;
	max-width: 1200px;
	border-bottom: 1px solid #aaa;
	padding-bottom: 10px;
}
.pokemon {
	background-color: #eee;
	box-shadow: 0 1px 10px rgba(100, 100, 100, 0.5);
	margin: 10px;
	border-radius: 10px;
	width: 140px;
	padding: 4px 0px 0px 0px ;
}
.pokemon:hover{
	cursor: pointer;
	animation: bounce 0.5s linear;
}
@keyframes bounce{
	20% {
		transform: translateY(-6px);
	}
	40% {
		transform: translateY(0px);
	}
	80% {
		transform: translateY(-2px);
	}
	100% {
		transform: translateY(0);
	}
}
.pokemon .img-container {
	width: 140px;
	height: 140px;
	text-align: center;
	background-color: rgb(0, 0, 0, 0.2);
}
.pokemon .img-container img {
	width: 100%;
	padding: 10px;
}
.pokemon .info {
	border-radius: 0px 0px 10px 10px;
	background-color: rgb(0, 0, 0, 0.1);
	height: 120px;
	padding: 0px 6px;
}
body .pokemon .number{
	font-family: 'Odibee Sans', cursive;
	font-size: 1.6rem;
	margin-left: 10px;
	color: white;
	-webkit-text-stroke: 1px black;
}
.pokemon .name {
	font-family: 'Gelasio', serif;
	font-size: 1.4rem;
	color: white;
	margin-bottom: 4px;
	padding-top: 4px;
}
.pokemon .pokemon-type{
	font-family: 'Cairo', sans-serif;
	font-size: 1rem;
	color: #fafafa;
}
.pokemon .pokemon-type span{
	text-transform: capitalize;
}
/*-- POPUP STYLING --*/

/* Popup Button */
#closeBtn{
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 10px 20px;
	border: none;
	border-radius: 3px;
	transition: transform 100ms;
	display: block;
	color: white;
	background-color: rgb(0, 0, 0, 0.4);
	outline: none;
	/*
	color: white;
	background-color: orangered;
	*/
}
#closeBtn:hover{
	cursor: pointer;
	transform: translateY(-1px);
	box-shadow: 2px 1px 2px rgb(0, 0, 0, 0.7);
}

/* Popup */
#popup-display-all{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
.popup{
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-y: scroll;
	padding: 10px 0px;
}
.popup-info{
	padding: 10px 40px;
	width: 80%;
	margin: auto;
	background-color: rgb(255, 255, 255);
	box-shadow: 1px 1px 20px 1px rgb(0, 0, 0, 0.1);
	border: 1px solid black;
	/*
	border-radius: 10px;
	width: 80%;
	*/
}
.popup-info h3{
	margin-bottom: 10px;
}
.popup-info #artwork-container{
	width: 80%;
	padding: 10px 0px;
	margin: auto;
}
.popup-info .artwork-popup{
	width: 100%;
	padding: 0px 20px;
	/*
	margin: auto;
	display: block;
	width: 80%;
	*/
}
.popup-info p{
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.popup-info p span{
	color: #666666;
}
.pokemon-data-section-popup{
	padding: 0px 0px 0px 0px;
}
.pokemon-base-stat-section-popup{
	padding: 10px 0px 10px 0px;
}
.pokemon-data-section-popup .pokemon-type{
	text-transform: capitalize;
}
.tab-content [data-tab-content]{
	display: none!important;
}
.tab-content .active[data-tab-content]{
	display: block!important;
}
.tab.active{
	background-color: rgb(0, 0, 0, 0.4);
}
footer{
	max-width: 1200px;
	margin: auto;
	font-size: 1.4rem;
	padding: 10px 10px 20px;
}
@media screen and (min-width: 1024px) {
	#pokemon-pokedex-region-container button{
		width: 100px;
		padding: 10px 20px;
	}
	.pokedex-content{
		max-width: 1200px;
	}
	.pokemon{
		width: 200px;
	}
	.pokemon .img-container {
		width: 200px;
		height: 200px;
	}
	.pokemon .info {
		height: 120px;
		padding: 0px 20px;
	}
	body .pokemon .number{
		font-size: 2rem;
		margin-left: 20px;
	}
	.pokemon .name {
		font-size: 1.6rem;
		margin-bottom: 4px;
		padding-top: 4px;
	}
	.pokemon .pokemon-type{
		font-size: 1.2rem;
	}
	
	.popup-info{
		padding: 10px 40px;
		width: 30%;
		margin: auto;
	}
	.popup-info #artwork-container{
		width: 80%;
		margin: auto;
	}
	#pokemon-pokedex-region-container{
		max-width: 1200px;
		margin: auto;
		display: flex;
		justify-content: center;
	}
	footer{
		padding: 10px 0px 20px 0px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.popup-info{
		width: 60%;
		margin: auto;
	}
	#pokemon-pokedex-region-container button{
		width: 100px;
		padding: 10px 20px;
	}
	.popup-info #artwork-container{
		width: 80%;
		margin: auto;
	}
	#pokemon-pokedex-region-container{
		max-width: 800px;
		margin: auto;
		display: flex;
		justify-content: center;
	}
	footer{
		max-width: 900px;
	}
}
