* {
    cursor: default;
    font-size: 20px;
    font-family: Arial;
    font-weight: normal;
    text-decoration: none;
    background-color: #ffffff;
    color: #000000;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.feed-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 25px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow-y: auto;
}

.media {
    display: none;
}

.mp3, .jpg, .mp4, .txt, .png {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0px 0;
    overflow-wrap: break-word;
}

audio {
    width: 100%;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: none;
}

video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: none;
}

.fullscreen-media {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    z-index: 9999;
    object-fit: contain;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-media.txt {
    overflow-y: auto;
}

.txt pre {
    padding: 25px;
    margin: 0;
    overflow-y: auto;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    height: 100%;
    box-sizing: border-box;
}

.media-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 9999;
    max-width: 650px;
    width: 100%;
    padding: 25px;
    overflow-wrap: break-word;
    box-sizing: border-box;
    overflow: hidden;
}

.media-overlay div:first-child {
    margin-bottom: 20px;
}

.media-overlay div:last-child {
    margin-bottom: 0px;
}