@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&family=Press+Start+2P&display=swap');

body {
    margin: 0;
    padding: 0;
	height: 100%;
}

.conteiner{
    width: 100vw;
    height: 100%;
	display: flex;
	justify-content: space-around;
	align-content: center;
	flex-wrap: wrap;
	align-items: center;
	background-image: url("../img/bg3.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: auto;
}

.logo {
	width: 75%;
	padding: 0 0 50px 30px;
	height: auto;
}

.Cbox{
	width: 500px;
	height: 500px;
	border: none;
	border-radius: 30px;
	background: rgb(255,255,255,0.8);
	display: flex;
	justify-content: center;
	align-content: center;
	padding: 10px;
}

.wrap{
	width: 100%;
	height: 1px;
}

.showimg{
	width: 480px;
	padding: 10px;
}
img.showimg{
	border-radius: 30px;
}

.text_result{
	font-family: Dosis;
	font-size: 32px;
	font-weight: bold;
	text-align: center;
}

.font_pergunta{
	font-family: Dosis;
	font-size: 48px;
	color: #fff;
	font-weight: bold;
	padding: 5px;
	margin-bottom: 30px;
	background: #000;
}

/*
Buttons
*/

.box_btn{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
}

.btn{
	font-family: 'Press Start 2P', cursive;
    text-align: center;
	display: inline-block;
	margin:5px;
    font-weight: bold;
    padding: 25px;
    background-color: #353535;
    text-shadow: -1px -1px black, 1px 1px white;
    color: #fff;
    -webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-o-border-radius: 7px;
	border-radius: 7px;
    cursor: pointer;
	transition: 0.5s;
}

.btn:hover{
	background: #000;
	padding: 35px;
	text-shadow: none;
	transition: 0.5s;
}


@media screen and (max-width: 480px) {
	
	.logo {
		width: 100%;
		height: auto;
	}
	
	.Cbox{
		width: 300px;
		height: 300px;
		border: none;
		border-radius: 30px;
		background: rgb(255,255,255,0.8);
		display: flex;
		justify-content: center;
		align-content: center;
		padding: 10px;
	}

	.wrap{
		width: 100%;
		height: 1px;
	}
	
	.font_pergunta{
		font-family: Dosis;
		font-size: 48px;
		color: #fff;
		font-weight: bold;
		padding: 5px;
		margin-bottom: 30px;
		background: #000;
		width: 90%;
	}

	.showimg{
		width: 280px;
		padding: 10px;
	}
	img.showimg{
		border-radius: 30px;
	}
	
	.box_btn{
		width: 100%;
		height: auto;
		display: flex;
		justify-content: center;
		padding-top: 30px;
	}
}