body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(240, 247, 206);
background: url(imgs/flow-fish-still.jpg) 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: 100px;
    position: absolute;
    transition: 1s ease; 
    pointer-events: none;
    filter: hue-rotate(210deg) saturate(40%) brightness(2);
}


.fish{
    width: 150px;
    height: 100px;
    position: absolute;
    top: 0;
    right: 0;
    transition: 1s ease;
    z-index: 2;
    animation: swim var(--duration) infinite ease;
    pointer-events: none;

}

@keyframes swim {
    0%{transform: translateX(100vw) scaleX(1);}
    49%{transform: translateX(0);}
    50%{transform: translateX(0) scaleX(-1);}
    99%{transform: translateX(100vw) scaleX(-1);}
    100%{transform: translateX(100vw) scaleX(1);}
}


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;
}

.fish{
    width: 150px;
    height: 100px;
    position: absolute;
    top: 0;
    right: 0;
    transition: 1s ease;
    z-index: 2;
    animation: swim 2s infinite ease;
    pointer-events: none;

}

}