
header {
	grid-area: hd;
}

/*nav {
	grid-area: nv;
}*/

figure {
	grid-area: fg;
}

section {
	grid-area: sc;
}

main {
	grid-area: mn;
}

footer {
	grid-area: ft;
}


#wrapper {
	display: grid;
	grid-template-columns: 10px 1fr 10px;
	grid-template-areas:
	".	hd	."
	".	sc	."
	".	fg	."
	".	mn 	."
	"ft	ft	ft"
	"ft	ft	ft";
	padding-top: 10px;
}


figure {
	padding-top: 10px;
}



.profile-box {
	position: relative;
	width: 100%;
	padding-bottom: 100%;
	margin: 1.66%;
	border-radius: 50%;
	/*background-color: pink;*/

	background-image: url("../images/profilePicture.jpg");
	background-size: cover;

}

section {
	padding-top: 10px;
}

#circle-link-section {
	
	padding-top: 20px;
}

.circle-link {
	float: left;
	position: relative;
	width: 30%;
	padding-bottom: 30%;
	margin: 1.66%;
	border-radius: 50%;
	text-transform: uppercase;
}


.circle-content {
	position: absolute;
	width: 90%;
	height: 80%;
	overflow: hidden;
	text-align: center;
	padding: 10% 5%;
}

.table {
	display: table;
	width: 100%;
	height: 100%
}

.table-cell {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
}

.table-cell a {
	width:100%;
	height:100%;
	padding-top: 100px;
}

.circle-label {
	
	font: normal normal normal 13px/1.2em 'Open Sans',sans-serif;
	color: #FFFFFF;
}

#circle-link-1 {

	background-color: rgba(232, 53, 86, 1);
    transition: border 0.4s ease 0s, background-color 0.4s ease 0s;
    border: solid rgba(232, 53, 86, 1) 0px;
}


#circle-link-2 {
	
	background-color: rgba(97, 208, 212, 1);
    transition: border 0.4s ease 0s, background-color 0.4s ease 0s;
    border: solid rgba(97, 208, 212, 1) 0px;
}


#circle-link-3 {
	
	background-color: rgba(209, 201, 38, 1);
    transition: border 0.4s ease 0s, background-color 0.4s ease 0s;
    border: solid rgba(209, 201, 38, 1) 0px;
}
