html, body {
    margin: 0;
    height: 100%;
    background: #96d0ff;
}
#c {
    width: 100%;
    height: 100%;
    display: block;
}

#tap-instruction {
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-family: 'Dancing Script', cursive; /* Ensure font matches */
    color: white;
    transition: opacity 0.5s ease-in-out;
    animation: fadeBlink 1.5s infinite alternate;
    pointer-events: none; /* Prevent interaction */
  }
  
  @keyframes fadeBlink {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
  }

  #archive {
    position: absolute;
    bottom: 0;
    right: 15px;
    background-color: #ffffa5;
    border-radius: 25px;
    padding: 10px;
    padding-top: 5px;
    z-index: 2;
  }