body {
    background-color: #266a24;
    animation: fadein 1s;
    margin: 0;
  }
  h1 {
    color: #fff;
    text-align: center;
    font-family: Fairies;
  }
  h2 {
      color: #fff;
  }
  p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  img {
    max-width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
  }
  .header {
    background-color: #3b90f2;
    padding: 10px;
  }
  .emoji {
    display:inline;
  }
  .text-box-earthfirst .emoji {
    width: 1.5rem;
  }
  .navbar {
    background-color: #336699;
    color: #000;
    padding: 10px;
    text-align: center;
  }
  .navbar a {
    color: #000000;
    text-decoration: none;
    margin-right: 15px;
  }
  .content {
    padding: 20px;
  }
  .footer {
    background-color: #336699;
    color: #000000;
    text-align: center;
    padding: 10px;
  }
  .image-container {
    display: inline-block; /* Display images in a row */
    overflow: hidden; 
    transition: transform 0.3s ease-in-out;
  }
  .image-container:hover {
    transform: scale(1.1); /* Apply scale transformation on hover */
  }
  .fairy-book {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 15%;
    overflow: hidden; 
    transition: transform 0.3s ease-in-out; 
  }
  .fairy-book:hover {
    transform: scale(1.1);
  }
  .section-content {
    margin: 1dvw;
    padding: 1%;
  }
  .image-box-L {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 15%;
    overflow: hidden; 
    transition: transform 0.3s ease-in-out; 
    border: 5px solid;
    margin: 10px;
    padding: 10px;
    background-color: #fff;
    border-color: #f0f0f0 #808080 #808080 #f0f0f0;
    border-radius: 2px;
    position:sticky;
    margin-left:0;
  }
  .image-box-R {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 15%;
    overflow: hidden; 
    transition: transform 0.3s ease-in-out; 
    border: 5px solid;
    margin: 10px;
    padding: 10px;
    background-color: #fff;
    border-color: #f0f0f0 #808080 #808080 #f0f0f0;
    border-radius: 2px;
    position:sticky;
    margin-left:82.5%;
  }
  .text-box {
    overflow-x: hidden;
    position: absolute;
    z-index: 1;
    background-color: #5f3991;
    margin-right:17%;
    margin-left:17%;
    text-align: center;
    width: 50dvw;
    display: block
  }
  .text-box-garden {
    margin-left: 30dvw;
    width: 60dvw;
    background-color: #5f3991;
    text-align: center;
    z-index: -1;
  }
  .section-images {
    text-align: center;
  }
  .mushroom-sign {
    display: block;
    width: 25%;
    overflow: hidden; 
    transition: transform 0.3s ease-in-out; 
    border: 5px solid;
    padding: 10px;
    background-color: #fff;
    border-color: #f0f0f0 #808080 #808080 #f0f0f0;
    border-radius: 2px;
  }
  .section {
    z-index: -10;
    position: relative;
    overflow: hidden;
  }
  .section-footer {
    text-align: center;
    padding-left: 2dvw;
    padding-right: 2dvw;
    width:90dvw;
  }
  .text-box-earthfirst {
    text-align: justify;
    background-color: #386641;
    padding: 1rem;
    width: 83dvw;
    margin-left: 3dvw;
    text-shadow: 2px 2px 4px #000;
  }
  
  #section1 {
    background-color:#386641;
  }
  
  #section2 {
    background-color:#6A994E;
  }
  
  #section3 {
    background-color:#A7C957;
  }

  @keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @font-face {
    font-family: 'Fairies';
    src: url('fonts/Fairies-LWRZ.ttf') format('ttf'),
    url('fonts/Fairies-LWRZ.woff2') format('woff2');
  }