<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins&amp;family=Roboto&amp;family=Wix+Madefor+Display&amp;display=swap');






button {
    font: inherit;
    box-shadow: 2px 5px 5px black;
}

button:hover {
    filter: brightness(110%)
}

.card {
    align-items: center;
}

.upload,
.download {
    border: 0px;
    padding: 10px;
    font-family: var(--font), sans-serif;
    color: var(--bgColor);
    font-weight: 700;
    border-radius: 4px;
    width: 125px;
    cursor: pointer;
    outline: none;
}

#fullName {
    margin: 20px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #67df16;
}

.refresh {
    border: 0px;
    padding: 10px;
    font-family: var(--font), sans-serif;
    color: black;
    background-color: var(--bgColor);
    font-weight: 700;
    border-radius: 15px;
    width: auto;
    cursor: pointer;
    outline: none;
}

.download,
.refresh {
    margin-top: 40px;
    margin-bottom: 0px;
}

.refresh {
    margin-top: 15px;
    margin-bottom: 0px;
}

.upload:active,
.download:active,
.refresh:active {
    cursor: unset;
}

.metadata {
    display: inline;
    margin-left: 25px;
}

.metadata li {
    display: inline-block;
    font-weight: 700;
    width: 200px;
}

.metadata li span {
    position: relative;
    top: 5px;
    display: inline-block;
    font-weight: 400;
    width: 90px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.input-value {
    width: calc(100% + 14px);
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    background-color: var(--bgColor);
    margin-left: -7px;
}

.input-value::-webkit-slider-runnable-track {
    height: 6px;
}

.track {
    height: 6px;
    width: 100%;
    background-color: #6F73F9;
    position: relative;
    top: 18px;
    z-index: 1;
}

.input-value::-webkit-slider-thumb {
    -webkit-appearance: none;
    border-radius: 100%;
    background-color: var(--bgColor);
    border: 2px solid black;
    height: 22px;
    width: 22px;
    margin-top: -7px;
    position: relative;
    z-index: 2;
}

.preview-container {
    /* width: calc(100% - 253px); */
    width: calc(100%);
    position: relative;
    /* margin: 0px 116px; */
    margin: 0;
    /* margin-top: 60px; */
    margin-bottom: 60px;
    font-weight: 700;
}

#slider-input {
    width: calc(100% + 40px);
    position: absolute;
    left: -21px;
    top: -6px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

#slider-input::-webkit-slider-runnable-track {
    height: 0px;
}

#slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 0px;
    height: 0px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--bgColor);
}

.compressed,
.original {
    position: absolute;
    top: -25px;
    margin-left: 10px;
}

.original {
    right: 10px;
}

.top {
    /* display: flex; */
    align-items: stretch;
    width: 602px;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    position: absolute;
    top: 0;
    z-index: 2;
}

.top img {
    min-width: 600px;
    margin: 0;
}

.bottom {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.bottom img {
    width: 100%;
    /* position: absolute; */
    z-index: -1;
    margin: 0;
}

.output,
.progress,
.preview-container {
    display: none;
}

.output .metadata {
    background-color: var(--bgComp1);
    padding: 10px;
    outline: gray;
    border-radius: 5px;
}

@media only screen and (max-width: 800px) {
    body {
        margin: 10px;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    h2,
    header {
        font-size: 0.9rem;
    }

    .container,
    .input,
    .output {
        /* font-size: 0.9rem; */
        margin: 0;
        padding: 5px;
        border-radius: 5px;
        width: 100%;
    }

    .upload,
    .download {
        padding: 5px 5px;
        width: auto;
        height: auto;
        margin: 10px 0;
    }

    .metadata {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 95%;
        margin: 5px;
        padding: 5px;
        margin: 10px;
        /* font-size: 0.8rem; */
    }

    .output {
        background-color: var(--bgComp1);
    }

    .item {
        margin: 2px;
        padding: 2px;
    }

    .top {
        display: flex;
        justify-content: center;
        align-items: stretch;
        overflow: hidden;
        width: 150px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
    }

    .top img {
        min-width: 300px;
    }
}</pre></body></html>