@font-face { font-family: RustyHooks; src: url('fonts/RustyHooks.ttf'); } 

div {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.question {
    font-size: 7vw;
    text-align: center;
    font-family: RustyHooks, monospace;
}

h2.reveal {
    font-size: 7vw;
    color: white;
    font-family: monospace;
    background-color: #ff726f;
    border-radius: 20px;
    padding: 30px;
}

body {
    background-color: #89CFF0;
    margin: 0;
    padding: 0;
    border: 0;
    
}

.floating-credit {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7); /* Slight transparency */
    color: white;
    font-size: 3.5vw;
    font-family: Arial, sans-serif;
    padding: 6px 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s, opacity 0.3s;
    opacity: 0.4; /* Starts subtle */
    z-index: 10001;
  }
  
  .floating-credit:hover {
    background: rgba(0, 0, 0, 0.9);
    opacity: 0.6;
  }