@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@500&display=swap");

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
body {
	min-height: 70vh;
	display: flex;
	color: #fff;
	background: #000;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	align-content: center;
}

svg {
	display: block;
	width: 100vw;
	max-width: 35rem;
	height: auto;
}
svg text {
	font-family: "Cabin", sans-serif;
	color: yellow;
	font-weight: 900;
	text-align: center;
}
