@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

body {
	display: flex;
  	justify-content: center;
  	align-items: center;
  	height: 100vh;
  	color: #fff;
  	background-color: #000;
  	font-family: "Arimo", sans-serif;
}
.text {
	text-align: center;
}

.text a {
	color: #fff;
	text-decoration: none;
	transition: 1s;
}
.text a:hover {
	color: #fd5000;
}