@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');

* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}

html {
	font-family: '--apple-system', 'Poppins', 'Arial', sans-serif;
}

canvas {
	display: block;
	border: 1px solid #000;
	margin: 0 auto;
}

a {
	text-decoration: none;
	color: #4c00ff;
}

.zoom {
    transition: transform .2s; 
}
 
.zoom:hover {
    transform: scale(1.1); 
}

#controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

#controls button {
	padding: 10px 20px;
	background: #fff;
	border: 1px solid #000;
	border-radius: 5px;
}

#controls input {
	height: 50px;
	width: 80px;
	outline: none;
}

#images {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

#images div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#nombreGit{
	text-decoration: none;
}
