* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	background-color: white;
}

body {
	width: 100%;
	height: 100vh;
}

main {
	display:flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	width: 100%;
	height: 100%;
}

main img {
	max-width: 400px;
	width: 100%;
	z-index: 9999;
}

.logo-container {
	margin: 40px;
}

.top-element {
	position: fixed;
	top: 0;
	left: 0;
}

.top-element img {
	width: 400px;
	max-width: 60%;
	transform: rotate(90deg);
}

.bottom-element {
	position: fixed;
	bottom: -20px;
	right: 0;
	text-align: right;
}

.bottom-element img {
	right: 0;
	width: 400px;
	max-width: 60%;
	transform: rotate(-90deg);
}