body {
	background: #FFFFFF;
    background: -webkit-linear-gradient(#FFFFFF, #4A6BB7);
    background: -o-linear-gradient(#FFFFFF, #4A6BB7);
    background: -moz-linear-gradient(#FFFFFF, #4A6BB7);
    background: linear-gradient(#FFFFFF, #4A6BB7);
	font-size: 20px;
}
header {
	margin-left: 10%;
	margin-right: 10%;
	margin-bottom: 2%;
	display: -webkit-flex;
    display: flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	
}

#logo{
	width: 15%;
	height: 15%;
	opacity: 1;
}

nav {
	margin-left: 10%;
	margin-right: 10%;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: -webkit-flex;
    display: flex;
}
li {
	width: 100%;
	text-align: center;
	margin-bottom: 2px;
	border-bottom: none;
}

li:hover {
	margin-bottom: 0px;
	border-bottom: 2px solid;
}

a {
	text-decoration: none;
	
}
a:link {
	color: #000000;
}
a:visited {
	color: #000000;
}
a:active{
	color: #000000;
}
article {
	margin-left: 10%;
	margin-right: 10%;
	display: -webkit-flex;
    display: flex;
	-webkit-flex-direction: column;
    flex-direction: column;
}
h2 {
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
	border-bottom: 2px solid;
}
#table {
	border: solid 1px;
	border-radius: 20px;
}
table{
	align-self: center;
	border-collapse: collapse;
	width: 100%;
}
th, td {
	border-bottom: solid 1px;
	border-right: solid 1px;
}

tr>td:last-child,th:last-child{
	border-right: none;
}
tr:last-child > td {
	border-bottom: none;
}
.checklist {
	width: 100px;
}
p {
	margin: 15px;
}

.hor {
	display: -webkit-flex;
    display: flex;
	justify-content: space-around;
	-webkit-justify-content: space-around;
	-webkit-align-items: center;
    align-items: center;
}
.horcon {
	display: -webkit-flex;
    display: flex;
	justify-content: space-around;
	-webkit-justify-content: space-around;
}
.vercon {
	text-align: center;
}
.ver > h3{
	margin-left: 15px;
}
figure {
	margin: 15px;
	display: block;
	text-align: center;
}
img {
	border-radius: 20px;
	opacity: 0.7;
	transition: opacity 1s;
}
img:hover {
	opacity: 1;
}
footer {
	text-align: center;
	font-size: 25px;
}
aside {
	position: fixed;
	bottom: 4%;
	right: 0%;
	height: 60px;
	width: 55px;
	border-width: 1px 0px 1px 1px;
	border-style: solid;
	border-radius: 20px 0px 0px 20px;
	font-size: 45px;
	text-align: center;
}

@media (max-width: 1100px) {
	img {
		width: 400px;
	}
	
	#photo {
		width: 80%;
	}
	
	.person {
		width: 200px;
	}
	
	.univer {
		width: 200px;
	}
}
@media handheld and (max-width: 600px){
	.hor {
	display: block;
	}
	.horcon {
	display: block;
	}
	ul {
	display: block;
	}
}