body {
      margin: 0;
      padding: 0;
      background-image: url("https://axayacatl.neocities.org/images/bgs/bladder.jpg");
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      min-height: 100vh;
      overflow-x: hidden;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      font-size: 22px;
      cursor: url('https://axayacatl.neocities.org/images/kitty_cursor.png'), auto;
    }
    
       .alchemist{
        position: fixed;
        right: 5%;
        width:20vh;
        bottom: 2% ;
        transform: scaleX(-1); 
      }
      
      .recipes {
        max-width: 25vw;
        max-height: 42vw;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.9);
        border-radius: 0;
        font-size: 22px;
        overflow: auto;
        text-align: left;
        position: relative;
        right: 10%;
        font-family: "Rainy Hearts", Arial, sans-serif;
        box-sizing: border-box;
      }

      .recipes a {
        color: #ff0f4f; 
      }

         .return-text {
      position: fixed;
      bottom: 5%;
      left: 4%;
      background-color: black;
      color: red;
      padding: 5px;
      font-family: "Bark", sans-serif;
      font-size: 23px;
      cursor: pointer;
      text-decoration: none;
      z-index: 999;
    }

    .return-text:hover {
      text-decoration: none;
    }

    @media (max-width: 1024px) {
      .recipes {
        max-width: 50vw;
        max-height: none;
        right: 5%;
      }

      .alchemist {
        width: 15vh;
      }
    }

    @media (max-width: 768px) {
      body {
        background-attachment: scroll;
        padding: 20px;
        box-sizing: border-box;
      }

      .recipes {
        max-width: 90vw;
        width: 90vw;
        max-height: none;
        right: 0;
        font-size: 18px;
        margin-bottom: 80px;
      }

      .alchemist {
        display: none;
      }

      .return-text {
        bottom: 15px;
        left: 10px;
        font-size: 18px;
      }
    }

    @media (max-width: 480px) {
      .recipes {
        max-width: 95vw;
        width: 95vw;
        padding: 15px;
        font-size: 15px;
      }
    }
