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

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

.question {
    font-size: calc(24px + 4vh);
    text-align: center;
    font-family: Quicksand, Cambria;
    color: lightgrey;
}

img.reveal {
    background: transparent;
    width: calc(24px + 16vh);
    cursor: pointer;
}

h2.answer {
    font-size: calc(24px + 4vh);
    text-align: center;
    color: lightgrey;
    font-family: Quicksand, Cambria;
}


body {
    background-color: #001B3A;
    margin: 0;
    padding: 0;
    border: 0;
    background-image: url('./images/KeyringGraphic.png');
    background-size: contain;  /* This will cover the entire viewport of the element */
    background-repeat: no-repeat;  /* This prevents the image from repeating */
    background-position: center;  /* This centers the image */
    
}

.floating-credit {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8); /* Slight transparency */
    color: black;
    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(255, 255, 255, 0.9);
    opacity: 0.6;
  }