* {
	margin-left: auto;
	margin-right: auto;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #f75f5f;
}
::-webkit-scrollbar
{
	width: 12px;
	background-color: #f75f5f;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #D62929;
}

body {
	/* Conrado's mod */
	background-color: #f75f5f;
	font-size: 20px;
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@keyframes float {
	0% {
		
		transform: translatey(0px);
	}
	50% {
		
		transform: translatey(-20px);
	}
	100% {
		
		transform: translatey(0px);
	}
}


.pokedex{
	margin-top: 20px;
	border: 0;
	animation: float 6s ease-in-out infinite;
}

form {
	margin-top: 2vh;

	width: 80%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

form input {
	width: 100%;
	
	margin-bottom: 10px;

	/* Conrado's mod */
	max-width: 60vw;
	font-size: 1.1em;
    border-radius: 10px;
    border: 0;
    padding: 10px;
}

form button {
	width: 50%;
	margin-bottom: 10px;

	/* Conrado's mod */
	font-size: 1.1em;
    background: #75acff;
    color: #fff;
    border: 0;
    padding: 5px 0;
	border-radius: 10px;
	cursor: pointer;
}

ol {
	/* Conrado's mod */
	/* margin-top: 10vh;
	column-count: 3; */

	/* Conrado's mod */
	width: 100%;
	margin: 2em 0;
	padding: 0;
	display: grid;
	cursor: pointer;
	
	grid-template-columns: repeat(auto-fill, minmax(200px, auto));
}

ol :hover {
	transition: background 0.7s ease-out;
	background: #0055ff
}

ol li {
	background: #00aaff;
	padding: 10px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	list-style-position: inside;

	/* Conrado's mod */
	border-radius: 10px;
	font-family: Arial, Helvetica, sans-serif;
}

div {
	width: 80%;
	height: 100%;
	margin-top: 5vh;
	text-align: center;
}

img {
	width: 128px;
}

div img {
	width: 256px;
	background: #aaa;
	border: 3px;
	border-style: solid;
	border-color: black;
}

h1 {
	width: 20%;
	text-align: center;
}

.details {
	font-family: sans-serif;
	width: 100%;
}

.container_pokeinfo {
	display: flex;
	justify-content: center;
	background: #75acff;
	border: 3px;
	border-style: solid;
	border-color: black;
}

.container_intro h2 {
	font-size: 3em;
}

.container_intro h3 {
	font-size: 2em;
}

.container_stats {
	background-color: green;
	padding: 2%;
}

.container_games {
	color: white;
	background: linear-gradient(to right, #000, #999);
	height: 30vh;
	overflow-y: auto;
}

.container_abilities {
	background-color: yellow;
	display: flex;
	justify-content: space-between;
}

.container_moves {
	color: black;
	background: linear-gradient(to left, #fff, #999);
	height: 30vh;
	overflow-y: auto;
}

@media (max-width: 1200px) {
}

@media (max-width: 800px) {

	.container_pokeinfo {
		min-width: 256px;
		display: grid;
	}
}