.user-recipe-container {
	position: relative;
	width: 60%;
	margin-top: 10px;
	min-height: 500px;
	float: left;
}
.user-bio {
	position: relative;
	text-align: center;
	min-height: 100px;
	background-color: white;
	width: 39%;
	float: right;
	margin-top: 10px;
	border: 1px solid lightgrey;
	border-radius: 2px;
}
.user-bio p {
	word-break: break-all;
	margin: 15px;
}
.user-bio h1 {
	font-size: 30px;
	margin: 15px;
}
.user-info {
	position: relative;
	background-color: white;
	text-align: center;
	width: 39%;
	margin-top: 10px;
	float: right;
	border: 1px solid lightgrey;
	border-radius: 2px;
}
.user-info p {
	margin: 10px;
}
.user-recipe {
	background-color: white;
	text-align: center;
	border: 1px solid lightgrey;
	margin-bottom: 10px;
	min-height: 250px;
	border-radius: 2px;
}
.user-recipe p {
	color: black;
}
.user-recipe-header {
	margin-top: 10px; 
	font-size: 40px;
}
.user-recipe-img {
	width: 100%;
}
.user-recipe-img img {
	margin-bottom: 10px;  
	max-width: 98%; 
	max-height: 80%;
}
.user-recipe-description {
	margin-left: 10px; 
	margin-right: 10px;
}

.user-none {
	font-size: 20px;
	text-align: center;
}



#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  cursor: pointer;
}

#text{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  color: white;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

#bio-container {
	background-color: white;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border: 1px solid lightgrey;
	border-radius: 5px;
	width: 500px;
	height: 300px;
	text-align: center;
}

.bio-submit {
	width: 45%;
	height: 40px;
	background: lightgrey;
	border-radius: 2px;
	float: left;
	margin-left: 20px;
    	padding:5px 15px; 
    	border:0 none;
    	cursor:pointer;
   	font-size: 15px;
	color: black;
	text-align: center;
}
.bio-cancel {
	width: 45%;
	height: 40px;
	background: lightgrey;
	border-radius: 2px;
	float: right;
	margin-right: 20px;
    	padding:5px 15px; 
    	border:0 none;
    	cursor:pointer;
    	font-size: 15px;
	color: black;
	text-align: center;
}

.bio-body {
	margin: 10px;
	width: 95%;
	height: 220px;
	border: 1px solid lightgrey;
	border-radius: 2px;
	resize: none;
}