/** RESET CSS **/

html, body, div, span, applet, object, iframe,
p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
 caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: 'Open Sans', sans-serif;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
	
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/** GENERAL **/

a{
	text-decoration: none;

}

/** HEADER **/

header{
	background-color: #F5FAFD;
	box-shadow: 0px 30px 30px #ccc;
	margin-bottom: 1px;;
}

header div{
	padding: 5px;
	width: 500px;
	margin: 0 auto;
	text-align: center;
}

header div h1{
	font-size: 43px;
	font-weight: 600;
}

/** CONTAINER **/

#link_container{
	//width: 90%;
	margin: 0 auto;
}

#link_list {
	display: flex;
//width: 5000px;
	flex-wrap: wrap;
	justify-content: center;
}

#link_list li {
	position: relative;
	padding: 15px 15px 15px 15px;
}

.link{
	color: #000000;
	padding: 10px;
	background-color: #999;
	border-radius: 5px;
	transition: all .3s
}

.link {
	display: block;
	color: #000000;
	text-align: center;
    margin: 0 auto;
	padding: 50px 20px;
    margin-top: 50px;
    position: relative;
    background-color: #50dbe5;
    border-radius: 0 6px 6px 6px;
    box-shadow: 6px 6px 17px rgba(0, 0, 0, 2);
	transition: all .3s
}

.link:before {
    content: '';
    width: 50%;
    height: 12px;
    border-radius: 0 20px 0 0;
    background-color: #41B0F0;
    position: absolute;
    top: -12px;
    left: 0px;
}

.link:hover{
	box-shadow: 15px 15px 15px #333;
}
