/* Tässä tiedostossa on kaikki sivuston ulkonäkömuotoilut. */


* {
    box-sizing: border-box;
}

html {
  background-color: #cfd1ce; 
}

body {
  font-family: Verdana, Arial;  
  font-size: 12px; 
  color: #666666; 
  letter-spacing: 1px;  
}

.container {
  width: 900px;
  margin: auto;
  border-radius: 25px;
  background-color: #fff;  
  text-align: justify;
  padding: 40px;
  max-width:100%;
}

.header {
  text-align: center;
  padding: 10px;
}

.nav {
  text-align: center;
  padding: 10px;
}

.footer {
  text-align: left;
  padding: 10px;
}

p {
  font-size: 12px;
}

h1 {
  font-family: KP;
  font-size: 60px;
  color: #3b6d2f;
}

h2 {
  font-family: KP;
  font-size: 30px;
  color: #475bbd;
}

h3 {
  font-family: KP;
  font-size: 28px;
  color: #3b6d2f;
}

h4 {
  font-family: KP;
  font-size: 26px;
  color: #475bbd;
}

h5 {
  font-family: KP;
  font-size: 24px;
  color: #3b6d2f;
}

h6 {
  font-family: KP;
  font-size: 22px;
  color: #475bbd;
}




/* LINKIT */
a:link, a:visited, a:active {
  color: #3b6d2f;
  text-decoration: none;
  border-bottom:solid 1px #475bbd;
}
/* mouse over link */
a:hover {
  color: #000;
  text-decoration: underline;
}

@font-face {
  font-family: "KP";
  src: url("Tasty_Birds_Sans.otf");
  }

@font-face {
  font-family: "KP-Bold";
  src: url("Tasty_Birds_Bold_Sans.otf");
  }

.row::after {
    content: "";
    clear: both;
    display: table;
}


[class*="col-"] {
    float: left;
    padding: 15px;
}

/* For mobile phones: */
[class*="col-"] {
    width: 100%;
    max-width: 100%;
}
    /* For desktop: */
@media only screen and (min-width: 768px) {

    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}

img {
    max-width: 100%;
    height: auto;
}

ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #666666;
  font-family: KP;
  
}

ul.topnav li {float: left;}

ul.topnav li a {
  display: inline-block;
  color: #cfd1ce;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 20px;
}

ul.topnav li a:hover {background-color: #555;}

ul.topnav li.icon {display: none;}

@media screen and (max-width:680px) {
  ul.topnav li:not(:first-child) {display: none;}
  ul.topnav li.icon {
    float: right;
    display: inline-block;
  }
}

@media screen and (max-width:680px) {
  ul.topnav.responsive {position: relative;}
  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.topnav.responsive li {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: center;
  }
}

fieldset {
  border:1px solid #666;
}

table, th, td {
  padding: 5px;
  padding-right: 50px;
  border-collapse: collapse;
  border:1px solid #ccc;
}

table#t01 tr:nth-child(even) {
    background-color: #eee;
  color: #475bbd;
}
table#t01 tr:nth-child(odd) {
    background-color: #fff;
    color: #3b6d2f;
}
table#t01 th {
    color: white;
    background-color: #666666;
  font-weight:normal;
}