@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
html { width: 100%; height: 100%; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: white url('bg.svg') no-repeat top left; background-size: cover; font-family: 'Open Sans'; font-size: 24px; line-height: 1.8em; height: 100%; font-weight: 400; }
img { width: 100%; height: auto; }
.container { display: flex; justify-content: flex-end; padding: 4vw 6vw; height: 100%; align-items: flex-end; }
.logo { flex-basis: 280px; margin-bottom: -15px; }
.left { margin-right: 100px; }
a { color: black; text-decoration: none; transition: opacity .3s ease-in-out; }
a:hover { opacity: .8; }
@media (max-width: 999px) {
	body { background-size: 100%; }
	.container { flex-wrap: wrap; align-content: flex-end; justify-content: center; padding: 12vw 8vw; }
	.left { margin-right: 0; margin-bottom: 40px; text-align: center; }
	.logo { flex-basis: 180px; }
}