@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

html body {
	margin:0;
	padding:0;
	background: #f9f9f9;
}

div.container {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	gap: 60px;
	margin:20px;
}

.logo {
	display:flex;
	justify-content: center;
}

img {
	width: 600px;
}

@media only screen and (max-width:940px) {
	img {
		width: 90%;
	}
}

body {
	font-family: "work sans";
}