body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: rgb(240, 247, 206);
background: url(imgs/flow-sky.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%;
z-index: 100;
user-select: none;
}
.cat:hover{
    cursor: pointer;
}



#eyes{
position: absolute;
left: 50%;
top: 50%;
transition: .3s ease;
z-index: 101;
user-select: none;
}

#butterfly{
    width: 150px;
    height: 150px;
    position: absolute;
    transition: 1s 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;
}
}


.butterfly{
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    right: 0;
    transition: 1s ease;
    z-index: 2;
    animation: rotate 1s infinite alternate, summon 2s ease;
    pointer-events: none;
    user-select: none;

}

@keyframes rotate {
    from{transform: rotate(-10deg) translateX(0);}
    to{transform: rotate(10deg) translateX(20px);}
}

@keyframes summon {
  from { transform: scale(1); }
  to { transform: scale(1); }
}


.cloud{
    width: 600px;
    height: 280px;
    position: absolute;
    filter: hue-rotate() saturate(200%) brightness(1.9);
    user-select: none;
}