.lightbox-triger {
    text-decoration-line: none;
}

.lightbox {display: none;}
.lightbox:target {
    position: absolute;
    left: 0;
    top: 0;
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10%;
}

.lightbox .close {
    display: flex;
    position: absolute;
    right: -1rem;
    top: -1rem;
    width: 2rem;
    height: 2rem;
    z-index: 1;
    align-items: center;
    justify-content: center;
    background-color: var(--text-primary);
    border-radius: 50%;
    color: var(--page-primary);
    cursor: pointer;
    text-decoration-line: none;
}

.lightbox .close-background {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(100, 100, 100, 0.7);
    cursor: default;
    text-decoration-line: none;
}

.lightbox span {
    position: relative;
    padding: 20px 18px 18px 22px;
    border-radius: 10px;
    background-color: var(--page-primary);
    color: var(--text-strong);
}

.lightbox > span * {
    font-size: 16px;
    font-weight: normal; 
}
