.resume-page {
    min-height: 100svh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
    background-color: var(--main-background);
    overflow: hidden;
}

.body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.resume {
    box-shadow: 0 0 1em hsl(0, 0%, 12%);
    border-radius: 1em;
    width: 50vw;
    min-height: 90vh;
    flex: 1;
}

.pdf-download-btn {
    margin: 0.8em 0em;
    font-size: 0.8em;
    font-weight: 600;
    background-color: var(--overlay-background);
    border-radius: 1em;
    color: var(--navbar-text-color);
    text-decoration: none;
    padding: 0.5em 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

:root[data-theme="light"] .resume {
    box-shadow: 0 0 0.5em hsl(0, 0%, 50%);
}

@media screen and (max-width: 768px) {
    .resume-page {
        min-width: 100vw;
        padding: 1em;
    }

    .resume {
        width: 90vw;
        border-radius: 0.75em;
        margin: 1em 0.5em;
        min-height: 72vh;
    }
}

@media screen and (max-width: 480px) {
    .resume {
        width: 95vw;
        border-radius: 0.5em;
        box-shadow: 0 0 0.75em hsl(0, 0%, 20%);
    }
}
