body{
	font-size: 20px;
	font-family: sans-serif;
	color: #333;
  align-content: stretch;
  align-items: stretch;
  background: #ececec;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
/**
 * Header
 */

.header {
  align-content: center;
  align-items: stretch;
  background: #d80000;
  box-shadow:
    0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 2px 9px 1px rgba(0, 0, 0, 0.12),
    0 4px 2px -2px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 20px;
  height: 56px;
  padding: 16px;
  will-change: transform;
  z-index: 1000;
}

.header h1 {
  flex: 1;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.header button {
  border: none;
  cursor: pointer;
  height: 24px;
  margin-right: 16px;
  outline: none;
  overflow: hidden;
  transition: opacity 0.333s cubic-bezier(0, 0, 0.21, 1);
  border: 0px;
  border-radius: 3px;
}

.header .powered-by {
  color: white;
  font-size: 0.6em;
  text-decoration: none;
}

.question{
	font-weight: 600;
}
.answers {
    margin-bottom: 20px;
}
#submit{
	font-family: sans-serif;
	font-size: 20px;
	background-color: #297;
	color: #fff;
	border: 0px;
	border-radius: 3px;
	padding: 20px;
	cursor: pointer;
	margin-bottom: 20px;
}
#submit:hover{
	background-color: #3a8;
}
#compartir{
  font-family: sans-serif;
  font-size: 20px;
  background-color: #073278;
  color: #fff;
  border: 0px;
  border-radius: 3px;
  padding: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}