#resumeWidget {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    top: calc(var(--navigation-height) + 28px);
    width: 100%;
    height: calc(100% - var(--navigation-height) - 28px);
    overflow: scroll;
}

#downloadResumeButton {
    text-decoration: none;
    padding: calc(8px + 1vmin);
    margin: calc(16px + 2vmin) 0;

    background-color: var(--main-color);
    border: solid var(--main-color) 2px;
    border-radius: 10px;
    box-shadow: 0 0 5px 2px var(--main-color);
    color: var(--secondary-color);

    cursor: pointer;
}

#resumeImgContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* width: calc(100% - 16px - 2vmin); */
}

#resumeImg {
    width: 100%;
}

#resumeImgClick {
    position: absolute;
    width: 100%;
    height: 100%;
}
