/* CSS Document */
@keyframes kenburns {
  from {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  to {
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
}
.bg {
  background-image: url("/img/relaxing-with-frosty-acres.03.jpg");
  position: fixed;
  background-position: center center;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  z-index: 1;
  animation-name: kenburns;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.bg:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  background: rgba(0, 0, 0, 0.5);
}

html, body {
  font-family: 'Lato', sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
}

h1 {
  font-size: 2rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  h1 {
    font-size: 4rem;
  }
}

p {
  font-size: 1rem;
  line-height: 170%;
}
p strong, p b {
  font-size: 1.4rem;
  line-height: 170%;
}
@media (min-width: 992px) {
  p {
    font-size: 1.2rem;
  }
  p strong, p b {
    font-size: 2rem;
    line-height: 170%;
  }
}

img.logo {
  width: 100px;
  background: #fdf8ea;
  border-radius: 50%;
  padding: 15px 45px;
}
@media (min-width: 992px) {
  img.logo {
    width: 150px;
  }
}

.container {
  width: 100vw;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}
.container .inner-content {
  text-align: center;
  width: 600px;
  max-width: 80%;
}
