html, body {
  margin: 0;
  font-family: 'Lora', serif;
  background-color: #f5f5f0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}

main {
  width: 100vw;
  height: 100vh;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
}

a {
  color: #4a4a48;
  text-decoration: none;
}

.button {
  font-family: 'Roboto', sans-serif;
  /* background: linear-gradient(45deg, #5df75d, #f7ec5d); */
  /* background-size: 150%; */
  /* background-position:0% 50%; */
  padding: 15px 25px;
  color: #4a4a48;
  /* box-shadow: #5f5f5f 7px 8px 3px 0px; */
  font-size: 1.2rem;
  text-transform: uppercase;
  /* color: #f5f5ef; */
  font-weight: 900;
  border-radius: 3px;
  transition: background .3s linear;

  /* OR?? */
  border: 2px solid #5df75d;
}

.button:hover {
  /* background-position:100% 50%; */
  background: #5df75d;
  color: white;
}

.logo {
  width: 150px;
}

.lang-links {
  text-align: right;
  font-family: 'Roboto', sans-serif;
}

.heading {
  text-align: center;
  justify-self: center;
  grid-column: span 2;
}

.heading, .intro {
  align-self: center;
}

.intro {
  max-width: 300px;
  line-height: 2.5rem;
  border-left: solid 1px gray;
  padding-left: 50px;
  grid-column: span 2;
  justify-self: center;
}

.cta {
  grid-column: span 2;
  align-self: center;
  justify-self: center;
}

.intro span {
  display: none;
}

.intro .active {
  display: block;
  animation: slidein 1s forwards;
}

.info {
  align-self: flex-end;
}

.heading h1 {
  margin: 0;
  cursor: pointer;
  font-size: 3vmax;
  line-height: 6vmax;
  transition: color 0.3s linear;
}

#concepting_link:before {
  content: attr(data-prefix);
  color: black;
  display: block;
  text-align: left;
  text-transform: lowercase;
  opacity: 0.7;
}

#delivery_link:before {
  content: attr(data-prefix);
  color: #91918c;
  display: block;
  text-align: left;
  text-transform: lowercase;
  opacity: 0.7;
}

.heading h1.active {
  color: #5df75d !important;
}

.heading h1:nth-of-type(2) {
  color: #91918c;
}

.grid {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: 45% 45%;
  /* grid-template-columns: 1fr 1fr; */
  grid-column-gap: 0px;
  grid-row-gap: 50px;
}


@keyframes slidein {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (min-width: 426px) { 
  main {
    padding: 50px;
  }
}

@media (min-width: 768px) { 
  /* Only now cols */
  .grid {
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 0px;
  } 
  
  .heading {
    grid-column: initial;
    text-align: right;
    justify-self: flex-end;
  }

  .heading h1 {
    font-size: 3.5vmax;
  }

  .intro {
    grid-column: initial;
    justify-self: initial;
  }
}

@media (max-width: 767px) {
  .intro span {
    display: block !important;
    /* animation: none !important; */
  }
}

@media (min-width: 1200px) { 
  .heading h1 {
    font-size: 60px;
    line-height: 72px;
  }  
}