
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: 1fr 100px 100px 100px 100px 100px 100px 100px  100px 100px 100px 1fr;
	grid-template-areas:
	".	.	hd	hd	hd	hd	nv	nv	nv	nv	nv	."
	".	fg	fg	fg	fg	.	sc	sc	sc	sc	sc	."
	".	fg	fg 	fg 	fg	. 	mn 	mn	mn	mn	mn	."
	"ft	ft	ft	ft	ft	ft	ft	ft	ft	ft	ft	ft";
	padding-top: 40px;
}


figure {
	padding-top: 50px;
}

.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;

}

/*#profile-picture img {
	border-radius: 50%;
	width: 370px;
	height: 370px;
}*/

section {
	padding-top: 50px;
}

#circle-link-section {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 130px;
	grid-gap: 10px;
	text-align: center;
	justify-content: center;
	padding-top: 20px;
}

.circle-link {

	height: 130px;
	width: 130px;
	display: flex;
	border-radius: 50%;
	text-transform: uppercase;
	color: white;
	font-weight: bold;
	justify-content: center;
	align-items: center;
}

.circle-link a {
	width:100%;
	height:100%;
	text-align: center;
	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-1:hover {
	background-color: rgba(155, 36, 57, 1);
    transition: border 0.4s ease 0s, background-color 0.4s ease 0s;
    border: solid rgba(232, 53, 86, 1) 5px;
}

#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-2:hover {
	background-color: rgba(65, 139, 141, 1);
    transition: border 0.4s ease 0s, background-color 0.4s ease 0s;
    border: solid rgba(97, 208, 212, 1) 5px;
}


#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;
}

#circle-link-3:hover {
	
	background-color: rgba(139, 134, 25, 1);
    transition: border 0.4s ease 0s, background-color 0.4s ease 0s;
    border: solid rgba(209, 201, 38, 1) 5px;
}

#circle-link-4 {
	
	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;
}

#circle-link-4:hover {
	
	background-color: rgba(139, 134, 25, 1);
    transition: border 0.4s ease 0s, background-color 0.4s ease 0s;
    border: solid rgba(209, 201, 38, 1) 5px;
}