body {
    font: url(fonts/Fairies-LWRZ.ttf);
    background-color: #e9c46a;
    margin: 20px;
    padding: 20px;
    animation: fadein 1s;
  }
  h1 {
    color: #000;
  }
  h2 {
      color: #fff;
  }
  p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .header {
    background-color: #3b90f2;
    padding: 10px;
  }
  .emoji {
    display:inline;
  }
  .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);
  }

  .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: 59.9%;
    display: block
  }
  .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;
  }
  .window {
    border: 2px solid;
    border-color: #f0f0f0 #808080 #808080 #f0f0f0;
    border-radius: 2px;
    background: #c4c4c4;
    box-shadow: 6px 6px rgba(53, 60, 63, 0.3);
    display: inline-block;
  }
  .window .titlebar {
    background: rgb(233,85,85);
    background: linear-gradient(90deg, rgba(233,85,85,1) 0%, rgba(253,251,29,1) 30%, rgba(52,240,42,1) 60%, rgba(69,116,252,1) 100%);
    border-radius: 1px 1px 0 0;
    margin-bottom: 2px;
    margin: 2px 2px 0 2px;
    display: flex;
    align-items: center;
  }
  
  .window .titlebar .title {
    color: #FFF;
    font-size: 20px;
    padding-left: 5px;
    margin-top: 4px;
  }
  
  .window .titlebar .buttons {
    margin-left: auto; /* push right */
    display: flex;
    cursor: pointer;
  }
  
  .window .titlebar .button {
    background-color:#c4c4c4;
    width: 20px;
    height: 20px;
  }
  
  .window-smile {
    background: url("images/smile.svg");
    background-repeat: no-repeat;
  }
  
  .window .content {
    padding: 2px;
    height: 100%;
    color: #000;
    border-radius: 0 0 1px 1px;
    font-size: 0;
  }
  .window .button {
    border: 2px solid;
    border-color: #f0f0f0 #808080 #808080 #f0f0f0;
    border-radius: 2px;
    margin: 2px;
    height: 25px;
  }
  
  .window .button:active {
    border-color: #808080 #f0f0f0 #f0f0f0 #808080;
  }

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