/* CSS is for adding style to your website. I.e colors, fonts, and positioning of HTML content. To learn how to do something, just check Google !*/
body {
  padding: 0;
  margin: 8px;
  background: #DFFDE1;
  /* Old browsers 
  background: -moz-linear-gradient(45deg, #f7f7f7 0%, #EAE0D5 100%);
  /* FF3.6-15 
  background: -webkit-linear-gradient(45deg, #f7f7f7 0%, #EAE0D5 100%);
   Chrome 10-25,Safari 5.1-6 
  background: linear-gradient(45deg, #f7f7f7 0%, #EAE0D5 100%);*/
}

/* Header styles */

.header {
  background-image: url("teraKUHN_logo.png");
  height: 400px;
  background-position: center center;
}

h1 {
  color: Black;
  font-family: Verdana;
  font-size: 28px;
  line-height: 16px;
  position: relative;
  text-align: center;
  top: 20%;
}

/* List style */

h2 {
  color: Black;
  background-color: #9FF781;
  font-family: Verdana;
  font-size: 1.3em;
  font-weight: 500;
  text-align: left;
  text-transform: uppercase;
}

ul {
  margin: 0 auto;
  padding: 0;
  width: 50%;
}

li {
  border-bottom: 1px solid #6D956F;
  list-style: none;
  padding: 10px 15px;
}

p {
  color: Black;
  line-height: 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 100;
}

a {
  color: #6D956F;
  font-family: Comic Sans MS, Comic Sans, cursive;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  text-decoration: none;
  letter-spacing: 2px;
}

/* Footer style */
footer {
  color: Black;
  background-color: #9FF781;
}