
.pdf-container {
    padding: 2%;
    opacity: 0;
    pointer-events: none;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: flex;
    justify-content: center;
    gap: 2.5%;
    background: rgba(0, 0, 0, 0.694);
    backdrop-filter: blur(10px);
    transition: all .5s ease-in-out;
}

.pdf-container.open {
    opacity: 1;
    pointer-events: all;
}

iframe {
    width: 700px;
}
.controls {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    height: 100%;
    justify-content: space-between;
}

.close-btn, .download-btn, .close-btn:hover, .download-btn:hover {
    opacity: 1;
    height: fit-content;
    background: none;
    border: none;
    color: white;
    padding: 0;
    font-size: 3rem;
}

@media (max-width: 700px) {
    .pdf-container > .pdfView {
        width: 300px;
    }

    .controls *{
        font-size: 2rem;
    }
}