@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*::before,
*::after,
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', 'sans-serif';
	line-height: 1.6;
	padding: 0 2.5rem;
	background-color: #6871e0;
}
h1 {
	padding-top: 2rem;
	text-align: center;
	line-height: 1.3;
}

#results {
	list-style: none;
	background: #444;
	margin: 0 auto;
	max-width: 553px;
	padding: 10px;
	li {
		display: flex;
		flex-wrap: wrap;
		overflow-wrap: break-word;
		justify-content: space-between;
		align-items: center;
		overflow: hidden;
		padding: 10px 12px;

		background: #777;
		margin-block: 5px;
		color: white;
		border-radius: 4px;
	}
	h2 {
		/* width: 100%; */
		font-weight: 500;
		font-size: clamp(12px, 5vw, 24px);
		color: azure;
	}
	.center {
		text-align: center;
		color: azure;
	}
}
.wrapper {
	/* width: 100%; */
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	h2 {
		font-weight: 500;
		font-size: clamp(12px, 5vw, 24px);
	}
	.container {
		transition: all 0.3s ease;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		background-color: #fff;
		min-width: 300px;
		width: clamp(300px, 50vw, 500px);
		max-width: 500px;
		padding: 4rem;
		border-radius: 9px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
		.box-img {
			height: 50px;
			width: 50px;
			border-radius: 50%;
			object-fit: cover;
			margin-bottom: 1rem;
			box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
		}
		button {
			padding: 10px 22px;
			border-radius: 9px;
			border: 0;
			background-color: #8468e0;
			color: #fff;
			cursor: pointer;
			margin-top: 2rem;
		}
	}
	.conteudoFinal {
		transition-delay: 0.3s;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		width: 100%;
		padding: 0 10px 2rem;

		overflow-wrap: break-word;
	}
}
