*::before,
*::after,
* {
	box-sizing: border-box;
}

* {
	padding: 0;
	margin: 0;
}

body {
	background-color: rgb(250, 230, 220);
}

.content {
	padding: 2rem 0 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
}

.content img {
	height: 200px;
	width: 200px;
	object-fit: cover;
	border-radius: 50%;
}

@media only screen and (max-width: 450px) {
	.content {
		flex-direction: column;
	}
}

.disclaimer {
	position: fixed;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	bottom: 2rem;
	color: rgb(150, 150, 150);
}