* {
	margin: 0;
	padding: 0;
	font-family: "Inter", sans-serif;
}
body, html {
	height: 100%;
	width: 100%;
}
header {
	padding: 20px;
	border-bottom: 1px solid lightgray;
	background: white;
	display: flex;
	align-items: center;
}
header img {
	width: 100px;
}
.toolLink {
	display: flex;
	flex-direction: column;
	border: 1px solid black;
	width: 200px;
	text-decoration: none;
	align-items: center;
	padding: 10px;
	margin: 10px;
	border-radius: 10px;
}
.toolLink img {
	max-width: 100%;
	border-radius: 10px;
}
input[type=text], input[type=number] {
	padding: 10px;
	border: 1px solid blue;
	border-radius: 10px;
}
button {
	padding: 10px;
	border: 1px solid blue;
	border-radius: 10px;
}
#toolsLinks {
	display: flex;
	flex-wrap: wrap;
}
table, thead, tr, th, td, tbody {
	border-collapse: collapse;
	border: 1px solid black;
}
td, th {
	padding: 10px;
}
#tool {
	display: flex;
	flex-direction: column;
	width: 500px;
	margin: auto;
	border: 1px solid black;
	padding: 20px;
	margin-top: 20px;
}