*,
*: before,
*: after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 100%;
}

a:link {color: black; text-decoration: none;}
a:visited {color: black; text-decoration: none;}
a:hover {color: black; text-decoration: none;}
a:active {color: black; text-decoration: none;}

ul { list-style: none; }

img { object-fit: cover; }

body {
	width: 100%;
	height: auto;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	overflow: auto;
	background-color: green;
}

.container {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	max-width: 500px;
	background-color: beige;
}


@media only screen and (min-width: 600px) {
	
}


