#get-clues {
    position: fixed;
    bottom: 40px;
    right: 40px;

    border-radius: 50%;
    padding: 10px;
    border: 3px solid #ffde23;
}

#get-clues img {
    width: 70px;
    height: auto;

    z-index: 10;
}

#clues {
    display: none;
    justify-content: center;
    align-items: center;

    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
}

#clues>div {
    position: relative;

    width: 70dvw;
    height: 70dvh;
    overflow: auto;

    border-radius: 10px;
    padding: 40px;
    background-color: white;
}

#clues h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 36px;
    color: var(--brown);
    text-align: center;

    padding-bottom: 20px;
}

#clues .toggle-container {
    margin-bottom: 25px;
}

#clues .toggle-button {
    display: flex;
    align-items: center;

    cursor: pointer;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: bold;
    color: var(--brown);
}

#clues .toggle-button img {
    transform: rotate(-90deg);
    width: 15px;
}

#clues .toggle-content {
    display: none;
    margin-top: 5px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 18px;
    color: var(--brown);
}

#clues #close-btn {
    position: absolute;
    bottom: 30px;
    right: 30px; 

    background-color: #f44336;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;

    cursor: pointer;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 14px;
}

#clues .toggle-content img {
    width: inherit;
}