/* nav specialized to landing page */
.logo {
  background: url('./images/onboarding_logo.svg') no-repeat;
  background-size: contain;
  transform: scale(2);
  position: relative;
  left: 50px;
  top: 30px;
}

nav {
  background-color: var(--bg-color);
}

/* hero section */
.hero {
  text-align: center;
  background-color: var(--bg-color);
  padding: 2rem 0 2rem 0;
}

.hero__title {
  font-weight: 900;
  color: var(--primary-color);
}

.hero__description {
  margin: -1rem auto 2rem auto;
}

/* feature section */
.feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.feature__item {
  max-width: calc(44% - 20px);
  margin: 0 20px 15px 0;
}

.feature__item .section__title {
  margin-bottom: 0;
}

.feature__item p {
  margin-top: 0.5rem;
}

/* callout section */
.callout {
  text-align: center;
  padding: 1rem 0 3rem 0;
}

.callout .button--primary {
  display: inline-block;
  margin-top: 0.5rem;
}


/**
  NEW ONES
**/

img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 180px;
  height: 140px;
}

.imgSpecial {
  width: 300px;
  height: 180px;
}

.showCase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.showCase > * {
  margin-left: 10px;
}

.prototype_link {
  white-space: pre-line;
  animation: fadeUp 2s;
}

.text_animation {
  animation: fadeInLeft 2s;
}

.linkCollection {
  display: flex;
  flex-direction: column;
}

@media (max-width: 750px) {
  .tab__container > ul {
    right: auto;
    left: 0;
    padding-left: 0;
  }
  .tab__container .code {
    margin-top: 2rem;
  }
  .feature, .keybinding, .changelog__item {
    flex-direction: column;
  }
  .feature__item {
    max-width: 100%;
    margin: 0;
  }
}

@media all and (min-width: 2000px) {
  img {
    width: 500px;
    height: 300px;
  }

  .imgSpecial {
    width: 700px;
    height: 500px;
  }

  .feature__item {
    max-width: calc(70% - 20px);
    margin: 0 20px 15px 0;
  }
}