﻿@import url("https://fonts.googleapis.com/css?family=Lato");

* {
	position: relative;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Lato", sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(to bottom right, #EEE, #AAA);
}
