* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}
body {
	background: rgb(235, 130, 183);
	background: radial-gradient(
		circle,
		rgba(235, 130, 183, 1) 15%,
		rgba(224, 46, 46, 1) 80%
	);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
table {
	border-collapse: collapse;
	width: 300px;
}
th,
td {
	border: 1px solid black;
	padding: 8px;
	text-align: center;
	background-color: rgb(255, 255, 255);
}
th {
	background-color: rgb(255, 1, 1);
}
div {
	padding: 100px;
	gap: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
img {
	width: 300px;
	height: 300px;
	border: 1px black solid;
	border-radius: 10px;
	box-shadow: 1px 1px 10px white;
}
h2 {
	text-shadow: 1px 1px 10px white;
}
