:root {

}

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	margin: 0;
}

body {
	display: grid;
	place-items: center;
	overflow: hidden;
	background: #131625;
	font-family: Arial, sans-serif;
}

.screen {
	width: 100vw;
	height: 100vh;
	background: radial-gradient(circle at 50% 50%, #d2418536, transparent 70%);
}

marquee {
	display: block;
	width: 100%;
	height: 100%;
}

.mafu {
	transform: scale(100%);
	transition: transform 0.1s cubic-bezier(.55,.06,.68,.19);
	width: fit-content;
	user-select: none;
}

.mafu:hover {
	cursor: pointer;
	transform: scale(101%);
}

.mafu:active:hover {
	transform: scale(99%) !important;
}