body {
    font: url(fonts/Fairies-LWRZ.ttf);
    background-color: #386641;
    margin: 20px;
    padding: 20px;
    animation: fadein 1s;
  }
  p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  img {
    max-width: 100%;
    height: auto;
  }

  .emoji {
    display:inline;
  }
  .footer {
    background-color: #6A994E;
    color: #000000;
    text-align: center;
    position:fixed;
    bottom:0;
    left:0;
    width: 100%;
  }
  .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: #6A994E;
    margin-right:17%;
    margin-left:17%;
    text-align: center;
    width: 59.9%;
    display: block
  }
  .content {
    margin-bottom: 5%;
  }

  @keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }