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

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 14px;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
	color: #666;
	background-color: rgba(167, 167, 167, 0.3);
	font-family: 'Noto Sans', sans-serif;
}

ul {
	list-style-type: none;
}

a {
	text-decoration: none;
}

button {
	font-family: 'Noto Sans', sans-serif;
}

a.btn {
    display: block;
    color: #666;
    text-align: center;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
