.embed {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.embed img {
    border-radius: 0.2rem;
    padding: 0.3rem;
    background-color: var(--background-color);
    max-width: 100%;
    max-height: 50vh;
}

.embed video {
    padding: 0.3rem;
    border-radius: 0.2rem;
    background-color: var(--background-color);
    max-width: 100%;
    max-height: 50vh;
}

.embed audio {
    padding: 0.3rem;
    border-radius: 2rem;
    background-color: var(--background-color);
}

.embed[type="application/pdf"] {
    padding: 0.3rem;
    border-radius: 0.2rem;
    background-color: var(--background-color);
    width: 60%;
    height: 50vh;
}

@media only screen and (max-width: 720px) {
    .embed[type="application/pdf"] {
        width: 100%;
        height: 50vh;
    }
}