#dragme {
    position: fixed;
    cursor: grab;
    user-select: none;
    touch-action: none;

    width: fit-content;
    height: fit-content;
}

.notes {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    position: relative;

    width: 90%;
    max-width: 90%;
    margin: 20vh auto 0 auto;
}

.note a {
    word-wrap: break-word;
}

.note {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;

    border: 3px solid var(--text-color);

    padding: 40px 16px 20px 16px;
    margin: 0 auto;
}

.note-image {
    max-width: min(100%, 460px);
    width: auto;
    min-width: 140px;

    height: auto;
    max-height: 400px;

    object-fit: contain;
    display: block;

    margin: 0 auto;
}

.note-img-pack {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1;
    gap: 20px;
    justify-content: space-around;
}

.note-text-def {
    font-size: 18px;
}

.note-text-center {
    font-size: 18px;
    margin: 0 auto;
    text-align: center;
}

.note-date {
    position: absolute;

    top: 0;
    left: 0;

    font-size: 16px;
    font-weight: 400;
    text-decoration: none;

    color: var(--background-color);
    background: var(--text-color);

    width: fit-content;
    padding: 0 4px;
}


@media (max-width: 560px) {
    .note-text-def {
        font-size: 16px;
        font-weight: 300;
    }

    .note-text-center {
        font-size: 16px;
        font-weight: 300;
    }

    .note {
        padding: 24px 12px 12px 12px;
    }
}