body {
    font-family: sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

#cv {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;

    width: 100vw;
}

#download-pdf {
    position: absolute;

    bottom: -95%;
    right: 5%;

    @media (min-width: 961px) {
        top: 4%;
        right: 4%;
    }

    img {
        width: 50px;
        height: 50px;

        @media (min-width: 961px) {
            width: 100px;
            height: 100px;
        }
    }
}

.page {
    width: 100%;

    @media (min-width: 961px) {
        width: 70vw;
    }
}

.linkedin-link {
    position: absolute; /* Positioned relative to .page-wrapper */
    top: 53%;
    left: 5%;
    width: 27%;
    height: 3%;

    @media (min-width: 961px) {
        top: 53%;
        left: 14.5%;
        width: 21%;
        height: 3.5%;
    }
}