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

body {
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
}

footer {
	text-align: center;
	margin: auto;
}

.container {
	margin: auto;
	width: 96%;
	height: 96vh;
	padding: 10px 15px 10px 15px;
	background: rgba(0, 255, 0, .5);
}

.titulo {
	text-align: center;
}

.juego {
	margin: auto;
	width: 90%;
	margin-top: 10px;
	margin-bottom: 10px;
	background: rgba(0, 0, 0, .4);
	color: #fff;
	padding: 5px 15px 5px 15px;
}

.gato {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	resize: none;
}

.gato input {
	height: 40px;
	flex: 0 0 33%;
}

input {
	text-align: center;
	font-size: 1em;
}

@media (min-width: 359px) and (max-width: 767px) {
	.container {
		background: rgba(255, 0, 0, .6);
	}

	.gato {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.gato input {
	width: 30px;
	height: 60px;
	flex: 0 0 33%;
}
}

@media (max-width: 480px){
	.container {
		background: rgba(0, 0, 255, .6);
	}
	
	.gato {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.gato input {
	width: 30px;
	height: 60px;
	flex: 0 0 33%;
}
}
