body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(240, 247, 206);
background: url(imgs/flow-bg.png) no-repeat bottom center;
background-size: cover;
cursor: url(imgs/butterfly-cursor.png), auto;
}

#bg{
    display: none;
}

.hidden{
    display: none;
}

@media(max-width: 600px){
body{
    width: 100vw;
    height: 100vh;
}
}

.cat{
width: 400px;
height: 440px;
position: absolute;
top: 50%;
left: 50%;
user-select: none;
}
.cat:hover{
    cursor: pointer;
}



#eyes{
position: absolute;
left: 50%;
top: 50%;
transition: .3s ease;
}

#butterfly{
    width: 150px;
    height: 150px;
    position: absolute;
    transition: 0.5s ease; 
    pointer-events: none;

}

audio{
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 15px;
    mix-blend-mode: soft-light;
    z-index: 1;
    color: white;
    background-color: white;

}



@media (max-width: 600px){
.cat{
    left: 47%;
}
audio{
    width: 80vw;
    height: 50px;
    position: absolute;
    left: 10vw;
    top: 50px;
}
}