/** Style for current startpage **/


/** Background colour of startpage **/
body {
	background-color: #092834;
}

/** The "boxes" of each section" **/
.box {
	background: rgab (0, 0, 0, 0.1);
	border: 1px solid rgab(255, 255, 255, 0.1);
	border-radius: 4px;
	height: 300px;
	margin: 10px;
	width: 400px;
}

.box:hover {
	background: #0f7173;
}

/** The container holding the "boxes" **/
#container {
	display: -webkit-flex;
	display: flex;
	justify-content: left;
	width: 1400px;
	height: 250px;
	align-items: center;
	margin-top: 10%;
	margin-left: 25%;
}

/** Title **/
.title {
	font-family: 'Courier New', monospace;
	text-align: center;
	color: #FE1A06;
	font-weight: bold;
	font-size: 32px;
}

/** Separator between title and list **/
.line {
	height: 1px;
	color: #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
}

/** Style of list **/
.list1 ul {
	list-style-type: none;
	columns: 2;
	-webkit-columns: 2;
}

.list1 li {
	padding: 10px;
	font-family: Consolas;
	font-size: 16px;
	font-weight: bold;
	margin-left: 10px; 
}

.list1 a:link {
	color: #B2D732;
}

.list1 a:hover {
	color: #FFFFFF;
}

.list1 a:visited {
	color: #00FFFF;
}
