.container {
    background-color: white;
    justify-content: space-around;
    align-items: flex-start;
    align-content: flex-start;
}

.noshare {
    width: 100%;
    height: 100%;
    font-size: 5vw;
}

p {
    text-align: justify;
    height: 1.2em;
}

.toast-mask {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: transparent;
    z-index: 1000;
    overflow: hidden;
}

.toast-fade {
    transform: translateY(-100%);
    opacity: 0;
}

.toast {
    font-size: 2em;
    color: white;
    background-color: rgba(0,0,0, 0.4);
    padding: 0.5em 1em 0.5em 1em;
}

.media {
    width: 30vw;
    height: 24vw;
    margin-top: 1.5vw;
    margin-bottom: 1.5vw;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
                rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.media:hover {
    transform: scale(1.1);
}

.media-item {
    width: 100%;
    height: 75%;
    margin: 0px;
}

.media-name {
    width: 100%;
    height: 25%;
}

.mask-icon {
    font-size: 2em;
}

.media-name-content {
    width: auto;
    height: auto;
}

.media-name-content p {
    margin-bottom: 1em;
}

.magnify-content {
    width: 80%;
    height: 80%;
}

.close {
}

.image-video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

@media only screen and (max-width: 800px) {
    .noshare {
        font-size: 5em;
    }

    .media {
        width: 100vw;
        height: 80vw;
        box-shadow: none;
        margin: 0px;
    }

    .toast {
        font-size: 5vw;
    }

    .media:hover {
        transform: none;
    }

    .magnify {
        background-color: rgba(0,0,0, 0.9);
    }

    .magnify-content {
        width: 100vw;
        height: auto;
        margin-bottom: 10vh;
    }

    .close {
        width: 100vw;
        height: auto;
        top: auto;
        right: auto;
        left: 0px;
        bottom: 10vh;
    }
}
