* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  min-height: 100%;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
}

::-moz-selection {
  background-color: #d7eeaa;
}

::selection {
  background-color: #d7eeaa;
}

main {
  background-color: #fff;
  height: 100%;
}

p {
  padding: 1em 0;
}

h1 {
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
  text-align: center;
}

section {
  font-size: 1rem;
}

/* BOF MOBILE STYLING */
.container {
  height: 100%;
}

/* MOBILE NAV BOF */
nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background-color: #83b224;
  z-index: 1;
}

/* HAMBURGER MENU BOF */
.hamburger_container {
  display: inline-block;
  margin-left: 15px;
  margin-top: 5px;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 3px;
}

.change .bar1 {
  -webkit-transform: rotate(-47deg) translate(-9px, 6px);
          transform: rotate(-47deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
          transform: rotate(45deg) translate(-8px, -8px);
}

/* HAMBURGER MENU EOF */
.navlink {
  display: block;
}

.navlink:hover {
  background-color: #64871c;
}

.link_list {
  text-align: center;
  display: none;
}

.link_list a {
  text-decoration: none;
  display: block;
  padding: 1em 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .2rem;
}

.active {
  position: absolute;
  display: block;
  background: #83b224;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 50px;
  z-index: 3;
}

/* MOBILE NAV EOF */
.logo_container {
  background-image: url("../img/kaija_logo.jpg");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 270px;
  margin-top: 50px;
  position: relative;
  z-index: 0;
}

.kaija_title {
  background-color: white;
  background-color: rgba(255, 255, 255, 0.7);
  height: 140px;
  position: absolute;
  width: 100%;
  top: calc((270px/2) - (140px/2));
}

.img_logo {
  width: 200px;
  height: auto;
  display: block;
  margin: 7px auto;
}

.content {
  text-align: center;
  padding: 3em 1.5em;
  line-height: 1.8em;
  font-family: 'Montserrat', sans-serif;
}

.content img {
  width: 100%;
  height: auto;
  max-width: 450px;
}

.book_btn {
  padding: 3.6em;
  background-color: #F3F3F3;
  display: block;
  text-decoration: none;
  background-color: #6eb53b;
  width: 217px;
  padding: 1.5em;
  margin: 2rem auto 0 auto;
  text-align: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  text-shadow: 0 1px 3px black;
  -webkit-transition: 85ms ease-in-out;
  transition: 85ms ease-in-out;
}

.book_btn:hover {
  background-color: #88c959;
}

.feedback {
  display: none;
}

.feedback_mobile {
  padding: 2.5em 1.5em;
  background-color: #6eafc9;
  color: #fff;
  font-style: italic;
  font-family: "Playfair Display", serif;
}

footer {
  background: white;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#c2c2c2));
  background: linear-gradient(to bottom, white 0%, #c2c2c2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#c2c2c2',GradientType=0 );
  padding: 3em 2em 1em 2em;
  line-height: 2em;
  font-size: 0.85rem;
  color: #454545;
}

.made_by {
  font-weight: 700;
  display: block;
  margin-top: 1.5em;
  text-align: center;
  color: #5a5a5a;
}

.made_by a {
  text-decoration: none;
  color: #1f1f1f;
}

.made_by a:hover {
  text-decoration: underline;
}

/* EOF MOBILE STYLING */
/* BOF DESKTOP STYLING */
@media only screen and (min-width: 768px) {
  body {
    font-size: 10px;
    background-image: url("../img/wood_texture.jpg");
    background-attachment: fixed;
  }
  .container {
    display: -ms-grid;
    display: grid;
    max-width: 1260px;
    margin: 0 auto;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: "header" "nav" "main" "footer";
  }
  .hamburger_container {
    display: none;
  }
  .active {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 0;
  }
  .logo_container {
    margin-top: 0;
  }
  header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: header;
  }
  nav {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: nav;
    position: relative;
    height: auto;
  }
  /* BOF DESKTOP NAV */
  .link_list {
    display: block;
  }
  .link_list a {
    padding: 1.5rem .7em;
    font-size: .85em;
    text-shadow: 0 1px 5px #3b3b3b;
    font-weight: 800;
  }
  .navlink {
    display: inline-block;
  }
  /* EOF DESKTOP NAV */
  main {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: main;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
        grid-template-areas: "content content" "feedback feedback";
    padding-bottom: 4em;
  }
  .content {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: content;
    padding: 4em 3em;
    text-align: left;
  }
  .book_btn {
    width: 300px;
  }
  .feedback {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: auto;
        grid-template-rows: auto;
        grid-template-areas: "comment1 comment2 comment3";
    -webkit-column-gap: 1.5rem;
            column-gap: 1.5rem;
    padding: 2em 2em;
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: feedback;
    background-color: #6eafc9;
    color: #fff;
    font-style: italic;
    font-family: "Playfair Display", serif;
  }
  .feedback_mobile {
    display: none;
  }
  .comment_1, .comment_2 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: comment1;
    border-right: 2px solid #fff;
    border-radius: 1px;
    padding: 0 1rem 0 1rem;
  }
  .comment_2 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: comment2;
  }
  .comment_3 {
    padding: 0 1rem 0 1rem;
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: comment3;
  }
  .tuikku {
    grid-area: kukka;
    height: 650px;
    max-width: 100%;
  }
  .about_us {
    grid-area: about;
    padding: 4em 3em;
    font-size: .9rem;
  }
  footer {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    grid-area: footer;
    text-align: center;
  }
  .made_by {
    text-align: right;
  }
}

/* BOF MEDIA QUERIES */
@media only screen and (min-width: 820px) {
  body {
    font-size: 12px;
  }
  .about_us {
    font-size: .95rem;
  }
}

@media only screen and (min-width: 1020px) {
  body {
    font-size: 14px;
  }
  .about_us {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1200px) {
  body {
    font-size: 16px;
  }
}

/* EOF MEDIA QUERIES */
/* EOF DESKTOP STYLING */
/*# sourceMappingURL=content.css.map */