body {
	
/* FLEX BOX PROPERTIES */
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
width: 100%;
height: auto;

/* BOX MODEL PROPERTIES */
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: 'Abel', sans-serif;
	font-size: 20px;

}

nav {
	color: black;
	background-color: #B1E6E6;
	height: 90px;
	width: 100%;

	display: flex;
	justify-content: space-around;
	
	flex-wrap: wrap;
	/*if mobile, makes elements smaller*/

	position: sticky;
	top: 0;
	font-size: 1.2em;
	align-items: center;
	
}

nav>* {
	/*margin: 0 10px;*/
	/*they never touch*/
	color: black;
	text-transform: uppercase;
	text-decoration: none;
}

#nav-img {
	width: 60px;
	height: 60px;
}
a:hover {
	color: #FFB02C;
}
#profilehead {
	margin-top: 50px;
	text-align: center;
	font-family: 'Abel', sans-serif;
	font-size: 36px;
}

#heading {
	width: 100%;
	height: 200px;
	margin-top: 0px;
	justify-content: center;
	align-items: center;
	display: flex;
	background-color:#FFDBCC;
	font-size: 40px;

	
}

#upload-image {
	text-align: center;
	font-family: 'Abel', sans-serif;
	font-weight: bold;
	padding: 10px;
}

.img2 {
	display: block;
	border-radius: 50%;
	border: 6px solid #9CECFF;

	height: 280px;
	width: 280px;


	margin-left: auto;


	margin-right: auto;
	
	margin-top: 25px;
  
  background: url(https://img.freepik.com/free-vector/stylish-hexagonal-line-pattern-background_1017-19742.jpg?size=626&ext=jpg) no-repeat scroll 0 0;
 
  

}

#name {
	text-align: center;
	font-family: 'Abel', sans-serif;
	font-size: 36px;
	margin-top: 50px;
	
}

#age {
	display: inline-block;
    padding: 4px 3px 5px 5px;
    margin-left: 5px;
    width: 25px;
	margin-bottom: 25px;
    outline: none;
    color: black;
    border: 1px solid #C8BFC4;
    border-radius: 4px;
    box-shadow: inset 1px 1px 2px #ddd8dc;
    background-color: #eceae4;
}

#quote {
	display: inline-block;
    padding: 4px 3px 5px 5px;
    margin-left: 5px;
    width: 500px;
	margin-bottom: 25px;
    outline: none;
    color: black;
    border: 1px solid #C8BFC4;
    border-radius: 4px;
    box-shadow: inset 1px 1px 2px #ddd8dc;
    background-color: #eceae4;
}

.mbti, .age, .pronouns, .quote {
	text-align: center;
	font-family: 'Abel', sans-serif;
	color: #ff968a;
	font-size: 28px;
	margin-top: 35px;
}

a {
	color: #ff968a;
}

select {
    display: inline-block;
    padding: 4px 3px 5px 5px;
    margin-left: 5px;
    width: 80px;
	margin-bottom: 25px;
    outline: none;
    color: black;
    border: 1px solid #C8BFC4;
    border-radius: 4px;
    box-shadow: inset 1px 1px 2px #ddd8dc;
    background-color: #eceae4;
}

.row{text-align:center;}

.column1,
.column2,
.column3{
	width:200px; 
	height:200px; 
	display:inline-block; 
	margin-left:-4px;
	margin-top: 25px;
	margin-bottom: 75px;
	
}

.column1{ 
margin-left:0;
margin-right: 20px;
border-radius: 25px;
border: 2px solid #FCB9AA;
	
}
.column2{
	margin-right: 20px;
  border-radius: 25px;
  border: 2px solid #FCB9AA;
}
.column3{
	margin-right:20px;
  border-radius: 25px;
  border: 2px solid #FCB9AA;
}

@media all and (max-width: 650px) {
    .column1,
    .column2,
    .column3{width:100%; display:block; margin:0;}
}


.footer {
  position: static;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #B1E6E6;
  color: #B1E6E6;
  text-align: center;
}