@import url(https://fonts.googleapis.com/css?family=Signika:400,700|Courgette);

* {
	box-sizing: border-box;
}

body {
    /*padding: 2.5em 2em 0em;*/
    margin: 0;
    padding: 0;
    background: #fff;
	font-size: 1.5em;
	color: #346;
	font-family: Signika, -apple-system, sans-serif;
	background-image: url('../images/bg.png');
	background-repeat: repeat-y;
}

section {
	margin: 0em auto 0;
	padding-top: 2em;
	padding-bottom: 1em;
	width: 100%;
	max-width: 800px;
}

input {
    display: block;
    margin: .5em auto 0em;
    padding: 0.5em 1em 0.5em 0.7em;
    width: 100%;
    border: none;
    background: rgba(0,0,0,0.05);
    color: rgba(0,0,0,0.8);
    font-size: 2em;
    line-height: 0;
		transition: all .5s linear;
}

input:hover, input:focus {
	outline: 0;
	transition: all .5s linear;
	box-shadow: inset 0px 0px 10px #ccc;
}

meter {
    /* Reset the default appearance */
	margin: 0 auto 1em;
	width: 100%;
	height: .5em;
    
    /* Applicable only to Firefox */
	background: none;
	background-color: rgba(0,0,0,0.1);
}

meter::-webkit-meter-bar {
	background: none;
	background-color: rgba(0,0,0,0.1);
}

meter[value="1"]::-webkit-meter-optimum-value { background: red; }
meter[value="2"]::-webkit-meter-optimum-value { background: yellow; }
meter[value="3"]::-webkit-meter-optimum-value { background: orange; }
meter[value="4"]::-webkit-meter-optimum-value { background: green; }

meter[value="1"]::-moz-meter-bar { background: red; }
meter[value="2"]::-moz-meter-bar { background: yellow; }
meter[value="3"]::-moz-meter-bar { background: orange; }
meter[value="4"]::-moz-meter-bar { background: green; }

h1 {
	margin: 0;
	padding: 0;
	text-align: center;
	padding: 12px 0;
	min-height: 81px;
}

#content {
	margin: 1em auto;
	width: 70%;
	background-color: rgba(255,255,255,0.9);
	display: block;
	max-width: 800px;
	padding: 0 1em;
}

.feedback {
	color: #9ab;
	font-size: 90%;
	padding: 0 .25em;
	font-family: Courgette, cursive;
	margin-top: 1em;
}

.goals li {
	color: #FF5733;
	font-size: 70%;
	padding: 0 .25em;
	font-family: Courgette, cursive;
	margin-top: 1em;
}

.goals li.success {
	color:green;
}

#logo {
	display: inline-block;
	width: 100%;
	/*height: 82px;*/
	margin: 0;
	padding-left: 0;
	background-color: #fff;
	background-image: url('../images/logo_sm.jpg');
	background-position: left;
	background-repeat: no-repeat;
}

.cont_text {
	font-size: 60%;
}

ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

li {
  padding-left: 1em;
  text-indent: -1em;
}

li:before {
  content: "-";
  padding-right: 5px;
}

li.success:before {
  content: "+";
  padding-right: 5px;
}

@media (min-width: 460px) and (max-width: 710px) {
	h1 {
		font-size: 1em;
	}
}

@media (min-width: 200px) and (max-width: 460px) {
	h1 {
		font-size: 0px;
	}
	#logo {
		background-position: center;
	}
}