div.stickypar {
    position: relative;
    margin: auto;
    max-width: 70rem;
}

section.card {
    display: flex;
    flex-wrap: wrap;
}

.sticky {
    display: flex;
    flex-direction: column;
    position: inherit;
    margin: 1.5rem;
    box-shadow: 0.5rem 0.5rem #5a5a5a;
    print-color-adjust: exact;
}

.sticky * {
    text-align: left;
    width: 100%;
}

.sticky img {
    width: 100px;
    height: 100px;
}

@media only screen and (max-width: 600px) {
    header nav input {
        top: 5rem;
    }
    header nav #hamburger {
        top: 5rem;
    }
    .profile {
        float: unset;
    }
    .profile img {
        max-width: unset;
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    body>div.contentWindow {
        max-width: 100%;
        padding-top: 0rem;
    }
}

@media only screen and (min-width: 992px) {
    body>div.contentWindow {
        width: 80rem;
        padding-top: 8rem;
    }
}

@media print {
    div.sticky {
        break-inside: avoid;
    }
}