html {
  color: #222;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  display: inline-block;
  background: #FFF7F2;
}

aside {
  width: 50vw;
  height: 100vh;
  background-image: url(../img/pietro-de-grandi-T7K4aEPoGGk-unsplash.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
}

main {
  display: block;
  padding: 5vh 0 4em;
  margin-left: 50vw;
}

h1, h2 {
  font-family: Halant, Georgia, 'Times New Roman', Times, serif;
  margin: 0 0 2rem;
  line-height: 1.2;
}

h1 {
  font-size: 2em;
  color: #F76B1C;
}

h2 {
  font-size: 4em;
  color: #733817;
}

p {
  font-size: 1.5em;
  color: #250F0F;
  margin-bottom: 1em;
  font-family: 'Quattrocento Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.logo {
  width: 160px;
  margin-bottom: 4em;
}

a {
  transition: all 0.3s ease;
  background-color: transparent;
}

img {
  border-style: none;
}

.cta {
  font-size: 1.125em;
  line-height: 1.333;
  color: #fff;
  border-radius: 1em;
  text-decoration: none;
  padding: 1em 2em;
  background: #F7611C;
  display: inline-block;
  font-kerning: normal;
}

.cta:hover {
  background: #D45216;
}

.container {
  margin: 0 auto;
  padding: 15px;
  text-align: center;
}

.text--section {
  margin-top: 2em;
  padding: 4em;
}

.carousel {
  width: auto;
  height: 20em;
  background: url(../img/travel-strip-with-gutters.png) repeat-x;
  background-size: auto 35vh;
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  to {
    background-position: -500px 0;
  }
}

.fly-trail{
  background-image: url(../img/fly-trail.png);
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 100px;
  right: 100px;
  width: calc(50vw - 11rem);
  height: calc(100vh - 45rem)
  /* height: auto; */
}

@media (max-width: 830px) {
  main {
    width: 80%;
    margin-left: 20%;
  }

  aside {
    width: 20%;
  }
}

@media (max-width: 520px) {
  main {
    width: 100%;
    margin-left: 0%;
  }

  aside {
    display: none;
  }
}