/* element.style {
    background: url(image/furniture/desk.png) no-repeat;
    position: absolute;
    background-size: 100%;
    top: 29.688vw;
    left: 15.625vw;
    width: 61.188vw;
    height: 30.375vw;
} */

body{
    cursor: url('image/plant/plant01.png'), auto;
}

h1 {
    filter: drop-shadow(0px 0px 5px rgb(157, 157, 156));
    font-family: cursive;
    font-size: 2.5vw;
    color: silver;
    text-align: center;
    margin-top: 2vw;
}

p {
    filter: drop-shadow(0px 0px 5px rgb(157, 157, 156));
    font-family: cursive;
    font-size: 1.5vw;
    color: silver;
    text-align: center;
    margin-top: 1vw;
}

u {
    filter: drop-shadow(0px 0px 5px rgb(157, 157, 156));
    font-family: cursive;
    font-size: 1vw;
    color: silver;
    text-align: left;
    margin-bottom: 1vw;
}


main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #mouse-track-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;  /* Make sure it's on top */
    pointer-events: none;  /* Prevent mouse events from being blocked */
}

