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

:root {
  --Green: hsl(75, 94%, 57%);
  --White: hsl(0, 0%, 100%);
  --Grey-700: hsl(0, 0%, 20%);
  --Grey-800: hsl(0, 0%, 12%);
  --Grey-900: hsl(0, 0%, 8%);
}
body {
	background-color: var(--Grey-900);
	font-size: .875rem;
	font-family: 'Inter', sans-serif;
	color: var(--White);
}
.container {
	background-color: var(--Grey-800);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 1.25rem;
	margin: 50px 20px;

}
.container img {
	max-width: 100px;
	max-height: 100px;
	border-radius: 50%;
	margin-bottom: .625rem;
}
.container input {
	background-color: var(--Grey-700);
	color: var(--White);
	font-weight: 600;
	text-align: center;
	margin-bottom: .625rem;
	width: 100%;
	padding: .625rem;
	border: none;
	outline: none;
	border-radius: 8px;

}
.container input:focus {
	background-color: var(--Green);
	cursor: pointer;
}
.container h3 {
	font-weight: 700;
	margin-bottom: .625rem;
}
.container p:first-of-type {
	color: var(--Green);
	margin-bottom: .625rem;
}
.container p:last-of-type {
	margin-bottom: .625rem;
}
@media (min-width: 500px) {
	.container {
		max-width: 300px;
		margin: 50px auto;
	}
}
