#toggle {
    display: none;
}

.toggle-label {
    display: inline-block;
    color: white;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    width: fit-content;
}

.content {
    display: none;
    text-align: center;
    padding: 7px;
    padding-top: 0px;
}

.popuplinks{
    background-color: rgba(38, 38, 38, 0.9);
    width: fit-content;
    text-align: center;
    position: fixed;
    top: 60px;
    right: calc((100% - 700px) / 2);
    z-index: 30;
    text-align: right;
    padding: 2px;
    max-width: 73vw;
    max-width: 300px;
    border-radius: 7px;
    font-size: 0.8em;
}

#toggle:checked ~ .content {
    display: block;
}

#toggle:checked + .toggle-label::before {
    content: "×";
}

#toggle:not(:checked) + .toggle-label::before {
    content: "≡";

}

.popupContainer {
    position: fixed;
    background-color: #000000ac;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-name: startblur;
    animation-duration: 0.3s;
    z-index: 300;
}