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;
}

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

	
}

/*Form*/
#checkin-form {
	justify-content: space-around;
	align-items: center;
	margin: 0 20px;
	font-size: 24px;
	
	
}


#scale {
	color: gray;
	font-size: .8em;
}

#explain {
	width: 100%;
	height: 250px;
}

#gratitudeexplain {
	width: 100%;
	height: 150px;
}

#onething {
	width: 100%;
	height: 100px;
}

#submitbtn {
  background-color: #FF968A; 
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  
}

#submitbtn:hover {
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

/*tip generator*/

#tips {
	
	margin: 60px 10px;
	width: 100%;
	height: 350px;
	background-color: #B1E6E6;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#generatetip {
  background-color: #FF968A; 
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  
}

#generatetip:hover {
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

#tipsheader {
	font-size: 25px;
}

input[type="radio"]{
  margin: 0 15px 0 15px;
}