#spotlight {
    display: none;
    width: 80vw; height: 80vh;
    position: fixed; left: 10vw; top: 100vh;
    background-color: #F4F1DE;
    color: #000000;
    border-radius: 0.5rem;
    z-index: 40;
    overflow: scroll;
    overflow-x: hidden;
}

#x-icon {
    cursor: pointer;
    width: 2.2rem;
    height: 2.2rem;
    position: absolute; right: 0.4rem; top: 0.4rem;
}

#x-icon-doc {
    cursor: pointer;
    width: 2.1rem;
    height: 2.1rem;
    position: absolute; right: 0.1rem; top: 0.1rem;
}

#x-icon:hover, #x-icon-doc:hover {
    background-color: rgba(0, 0, 0, 0.37);
    border-radius: 0.2rem;
}

#x-icon:hover span, #x-icon-doc:hover span {
    background: #F4F1DE;
}

#x-icon span, #x-icon-doc span {
    display: block;
    position: absolute; top: 1rem; left: 0.2rem;
    height: 0.2rem;
    width: 1.8rem;
    background: #f4a460;
    border-radius: 0.2rem;
    opacity: 1;
}

#x-icon span:nth-child(1), #x-icon-doc span:nth-child(1){
    transform: rotate(45deg);
}

#x-icon span:nth-child(2), #x-icon-doc span:nth-child(2){
    transform: rotate(-45deg);
}

#spotlight .img-wrapper {
    float: right;
    width: 30vw; height: 30vw;
    overflow: hidden;
    border-radius: 0.4rem;
    margin: 1.3rem 1.3rem .3rem 1rem;
}

#spotlight-img {
    width: 100%;
    height: auto;
}

#spotlight-text {
    text-align: justify;
    width: 80vw;
    padding: 1rem;
    font-size: 2.2rem;
}

#spotlight-name {
    font-size: 4rem;
    color: #2b737e;
    text-align: left;
    padding-left: 1rem;
}

/* mobile */
@media all and (max-width: 680px) {
    #spotlight {
        width: 90vw;
        left: 5vw;
    }

    #spotlight-name {
        font-size: 10vw;
        text-align: center;
        padding: 0
    }

    #spotlight-text {
        text-align: justify;
        width: 90vw;
        padding: 5vw;
        font-size: 1rem;
    }

    #spotlight .img-wrapper {
        width: 50vw; height: 50vw;
        overflow: hidden;
        border-radius: 0.4rem;
        margin: 0.6rem 20vw 0;
    }
}


#spotlight-background {
    display: none;
    position: fixed; top: -5vh; left: -5vw;
    background-color: rgba(0, 0, 0, 0.70);
    height: 110vh;
    width: 110vw;
    overflow: hidden;
    z-index: 30;
    opacity: 0;
}

#spotlight-document {
    display: none;
    width: 80vw; height: 80vh;
    position: fixed; left: 10vw; top: 100vh;
    flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 40;
    border-radius: 0.5rem;
    background: #F4F1DE;
    overflow-x: hidden;
}

.spot-doc-link-wrap {
    height: 2.3rem;
    width: 100%;
    display: flex; align-items: center; justify-content: center;
    background: #F4F1DE;
}