#linkScreen.hidden {
    display: none;
}

#linkCenter {
    top: 50vh;
    left: 50vw;
    position: absolute;
    transform: translate(-50%, -50%);
}

#linkScreen {
    margin: 0;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    text-align: center;
}

#linkBg {
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    position: absolute;
}

#linkCenter {
    background-color: rgba(255,255,255,0.25);
    width: fit-content;
    height: fit-content;
    border: 1px dotted black;
    padding: min(2.5vw, 2.5vh);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#linkQr * {
    width: min(50vw, 50vh);
    height: min(50vw, 50vh);
}

#linkTxt {
    color: black;
    background-color: #ffffff80;
    max-width: min(40vw, 40vh);
    text-decoration: underline;
}