@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&display=swap');
:root {
  --stack-margin-sm: 4em;
  --stack-margin-md: 2em;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  background-color: #FC4131;
}
@media (min-width: 90em) {
  html {
    font-size: calc(0.2vw + 100%);
  }
}

body {
  color: #FCF2F0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
}
@media (min-width: 90em) {
  .body {
    min-height: 90vh;
  }
}

img {
  height: auto;
  max-width: 100%;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


.stack--md * + * {
  margin-top: var(--stack-margin-md);
}
.stack--sm * + * {
  margin-top: var(--stack-margin-sm);
}

.cta-btn {
  color: #FCF2F0;
  font-size: 1.2rem;
  font-family: 'Literata', serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 200ms ease-out, box-shadow 150ms ease-out, transform 200ms ease-out;
  box-shadow: -1px 1px currentcolor, -2px 2px currentcolor, -3px 3px currentcolor, -4px 4px currentcolor;
  display: inline-block;
  padding: 0.5em 1em;
  border: 2px solid currentcolor;
  border-radius: 15px;
}
.cta-btn:hover, .cta-btn:focus {
  color: #FCF2F0;
  box-shadow: -1px 1px currentcolor, -2px 2px currentcolor, -3px 3px currentcolor, -4px 4px currentcolor, -5px 5px currentcolor, -6px 6px currentcolor;
  transform: translatey(-2px);
}
.cta-btn:active {
  box-shadow: -1px 1px 0 0 currentcolor;
  transform: translatey(0px);
}

/* Responsive layout - CTA button*/
@media (max-width: 800px) {
  .cta-btn { 
    font-size: 20px;
    }
  }
  
.hero-section {
  padding: 0.2em 0.5em;
  display: grid;
  grid-gap: 2em;
  margin-left: 50px;
}
@media (min-width: 60em) {
  .hero-section {
    padding: 1em 2em;
    grid-gap: 4em;
    margin-top: 3em;
    margin-left:  56px;
  }
}
@media (min-width: 75em) {
  .hero-section {
    grid-template-columns: 65ch 1fr;
    grid-gap: 1em;
    margin-top: 3em;
    margin-left:  150px;
  }
  .hero-section__img {
    margin-top: 7em;
  }
}
@media (min-width: 90em) {
  .hero-section {
    grid-template-columns: 65ch 1fr;
  }
  .hero-section__img {
    margin-top: 9em;
  }
}
.hero-section__text {
  padding: 1em;
}

@media (max-width: 800px) {
  .hero-section { 
    margin-left:  26px;
      }
    }

@media (max-width: 800px) {
.hero-section__text  { 
  padding: 0;
    }
  }

.hero-section__img {
  padding: 0em;
}
.hero-section__img img {
  margin-top: 0rem;
  max-height: 30rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 3.6px 2.2px rgba(0, 0, 0, 0.02), 0 8.6px 5.3px rgba(0, 0, 0, 0.028), 0 16.2px 10px rgba(0, 0, 0, 0.035), 0 28.8px 17.9px rgba(0, 0, 0, 0.042), 0 53.9px 33.4px rgba(0, 0, 0, 0.05), 0 129px 80px rgba(0, 0, 0, 0.07);
}


/** initial animations **/
.tilt-img {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  opacity: 0;
  -webkit-animation: fadeInRight 600ms 400ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
          animation: fadeInRight 600ms 400ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@-webkit-keyframes fadeInRight {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(0 100% 0 100%);
            clip-path: inset(0 100% 0 100%);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(0 100% 0 100%);
            clip-path: inset(0 100% 0 100%);
    opacity: 1;
  }
}

.cta-block {
  transform: translatey(10px);
  opacity: 0;
  -webkit-animation: fadeInBottom 300ms 300ms ease-out forwards;
          animation: fadeInBottom 300ms 300ms ease-out forwards;
}

h1 {
  transform: translatey(10px);
  opacity: 0;
  -webkit-animation: fadeInBottom 300ms 100ms ease-out forwards;
          animation: fadeInBottom 300ms 100ms ease-out forwards;
}
@-webkit-keyframes fadeInBottom {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tagline */  

.Lets {
  padding: 2em 5em;
  font: normal 40px/50px Montserrat, sans-serif;
  color: #ffffff;
  
}
.Lets p {
  height: 100px;
  float: left;
  margin-right: 0.3em;
}

.Lets b {
  float: left;
  overflow: hidden;
  position: relative;
  height: 50px;
  top: 40px;
}
.Lets .innerVote {
  display: inline-block;
  color: #ffffff;
  position: relative;
  white-space: nowrap;
  top: 0;
  left: 0;
  font-size: 3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  margin: 0;

/*animation*/
-webkit-animation:move 5s;
   -moz-animation:move 5s;
    -ms-animation:move 5s;
     -o-animation:move 5s;
        animation:move 5s;
/*animation-iteration-count*/
-webkit-animation-iteration-count:infinite;
   -moz-animation-iteration-count:infinite;
    -ms-animation-iteration-count:infinite;
     -o-animation-iteration-count:infinite;
        animation-iteration-count:infinite;
/*animation-delay*/
-webkit-animation-delay:1s;
   -moz-animation-delay:1s;
    -ms-animation-delay:1s;
     -o-animation-delay:1s;
        animation-delay:1s;
}
@keyframes move{
0%  { top: 0px; }
20% { top: -50px; }
40% { top: -100px; }
60% { top: -150px; }
80% { top: -200px; }
}

@-webkit-keyframes move {
    0%  { top: 0px; }
    20% { top: -50px; }
    40% { top: -100px; }
    60% { top: -150px; }
    80% { top: -200px; }
}
@-moz-keyframes move {
    0%  { top: 0px; }
    20% { top: -50px; }
    40% { top: -100px; }
    60% { top: -150px; }
    80% { top: -200px; }
}
@-o-keyframes move {
    0%  { top: 0px; }
    20% { top: -50px; }
    40% { top: -100px; }
    60% { top: -150px; }
    80% { top: -200px; }
}
@keyframes move {
    0%  { top: 0px; }
    20% { top: -50px; }
    40% { top: -100px; }
    60% { top: -150px; }
    80% { top: -200px; }
}

/* Responsive layout - CTA button*/
@media (max-width: 800px) {
  .Lets .innerVote{ 
    padding: 0em 0em;
    font-size: 25px;
    margin-top: 0;
    margin-left: 0;
    }
    .Lets p {
      height: 1px;
      float: left;
      margin-right: 0em;
    }
    
    .Lets b {
      float: left;
      overflow: hidden;
      position: relative;
      height: 20px;
      top: 0px;
    }
  }

  #title {
    font-size: 75px;
    font-family: 'Literata', serif;
    font-weight: 450;
    margin: 0;
    color: #FCF2F0; 
  }

  @media (max-width: 800px) {
    #title { 
      font-size: 45px;
      }
    }
  
  @media (max-width: 800px) {
  .Lets { 
  padding: 2em 1em;
  font: normal 40px/50px Montserrat, sans-serif;
  color: #ffffff;
      }
    }