@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Roboto&display=swap');

html,body {
	background-color: #b9b9b9;
	overflow: hidden;
	padding: 0;
	margin: 0;
}

.header {
	align-items: center;
	background-color: #1d1d1d;
	color: white;
	display: inline-flex;
	font-family: 'Roboto', sans-serif;
	font-size: 19;
	height: 70px;
	position: fixed;
	width: 100%;
}

.header hr {
	margin-right: 10px;
	margin-left: 10px;
	width: 40px;
}

.header br {
	width: 15px;
}

.icon-div {
	border-radius: 50%;
	border: solid white 2px;
	cursor: pointer;
	margin-left: auto;
	margin-right: 20px;
	padding: 8px;
}

.icon-div:hover {
	border: solid white 3px;
	margin-right: 19px;
}

.module {
	background-color: #1d1d1d;
	border-radius: 18px;
	padding: 10px;
	width: 550px;
}

.module .module-title {
	align-items: center;
	color: white;
	display: flex;
	font-family: 'Roboto', sans-serif;
	font-size: 17;
	justify-content: center;
}

.module hr {
	margin-right: 10px;
	margin-left: 10px;
	width: 40px;
}

.module .module-table {
	display: inline-flex;
	justify-content: center;
}

.module .link-icon {
	align-items: center;
	background-color: #e7e7e7;
	border-radius: 13px;
	cursor: pointer;
	display: inline-flex;
	height: 80px;
	justify-content: center;
	margin: 1px 13px 13px 13px;
	padding: 5px;
	width: 80px;
}

.module .link-icon:hover {
	background-color: #f5f5f5;
	margin: 0 12px 12px 12px;
	padding: 6px;
}

#modules {
	justify-content: center;
	display: inline-flex;
	margin-top: 100px;
	width: 100%;
}