/* Example CSS file */ 

/* html.is-animating #swup {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
  }
  
#swup {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
} */

html.is-changing .transition-main, html.is-changing .transition-header {
    transition: all 200ms ease-in-out;
}
  
html.is-animating .transition-main {
    /* filter: blur(1rem); */
    opacity: 0;
    transform: translateX(-10px);

}

html.is-animating .transition-header {
    opacity: 0;
    transform: translateX(-10px);

}

img {
    max-width: 300px;
}

#playBtn {
    border: 1px solid black;
    width: fit-content;
    padding: 3px;
    cursor: pointer;
}

#playBtn:hover {
    background-color: rgb(129, 129, 129);
}

audio {
    position: fixed;
  top: 5px;
  right: 5px;

}

.editLink {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
}