@font-face {
  font-family: 'Lora';
  src: url('./data/fonts/Lora-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('./data/fonts/Lora-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('./data/fonts/Lora-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('./data/fonts/Lora-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}


:root {
  --dark-grey: #151515;
  --grey: #9F9F9F;
  --paper: #FFFEF8;
}

html, body, .container {
    overflow-x: hidden !important;
    max-width: 100vw;
}

body {
  font-family: "Lora", serif;
  font-size: 16px;
  line-height: 1.7  ;
  font-weight: 400;
  background-color: var(--paper);
  color: var(--dark-grey);
  padding: 0 16px;
  margin: 0;
  position: relative;
}

.container {
  max-width: 640px;
  margin: 140px auto 0 auto;

}



.carrot-container, .pear-container, .tomato-container {
    z-index: -1;
    max-width: 300px;
    position: absolute;

}

.carrot-container {

  top: -130px;
  right: 30%;
  width: 50%;
}

.pear-container {
    top: 200vh;
    left: 20%;
    width: 100%;
    scale: 1.5;
  }

.tomato-container {
    top: 300vh;
    right: 20%;
    width: 100%;
    scale: 1.2;
  }

.light {
  color: var(--grey);
}

h1, h2, h3, p {
    margin-top: 0;

}

h1 {
  font-size: 48px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 75px;
}


h2 {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 16px;
}

h3 {
    margin-bottom: 0px;
}

p,ul, hr {
    margin-bottom: 48px;
}

.list-intro {
    margin-bottom: 16px;
}

.small-paragraph {
    margin-bottom: 22px;
}


.content {
    margin-bottom: 100px;
}

.footer {
    margin-bottom: 100px;
}

.footer p {
text-align: center;
margin: 0px;
margin-bottom: 42px;
}

.footer-link, .footer-link a {
    color: var(--grey);
    text-decoration: none;
}

.footer-link a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 480px) {

    .container {
        margin-top: 80px;
    }

    .carrot-container {
        top: -100px;
        right: 100%;
    }
 
    .pear-container {
        position: absolute;
        top: 500vh;
        left: 20%;
        width: 100%;
        scale: 1.2;
      }

      .tomato-container {
        top: 800vh;
        right: -20%;
        width: 100%;
        scale: 1;
      }

    
    h1 {
      font-size: 36px;
      margin-bottom: 50px;
    }
  }