body{
    background-color: black;
    margin: 0;
}

body::-webkit-scrollbar {
    display: none;
}

.title{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    color : #adaac1;
    text-align: center;
    margin: 0px;
    font-size: larger
}

.header {
    width: 100%;
    background-color: #14141c;
    margin-bottom: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    overflow: auto;
    position: fixed;
    z-index: 10
}

#iglogo{
    height: 30px;
    filter: invert(0.5);
}

#iglink{
    float:right;
    padding-right:10px;
}

#symagePreview {
    max-height: 97%;
    max-width: 97%;
}

#symagePreviewContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 100;
    width:100%;
    max-height: 100%;
    top: 44px;
    bottom:0px;
    background-color:#000000b2;
    opacity: 0%;
    font-size: 0px;
}

.symageContainer{
    font-size: 0;
    padding-top: 57px;
    width: 100%;
    text-align: center;
    column-fill: balance;
    columns: 2;
    @media (min-width: 1200px) {
        columns: 3;
    }
    @media (min-width: 1800px) {
        columns: 4;
    }
}

.symage{
    -webkit-transition: 1s;
    -moz-transition:    1s;
    -ms-transition:     1s;
    -o-transition:      1s;
    transition:         1s;
    width: 100%;
    opacity: 0%;
    translate: 0 50px;
}

.previewfadein {
    pointer-events: all;
    -webkit-transition: 0.3s;
    -moz-transition:    0.3s;
    -ms-transition:     0.3s;
    -o-transition:      0.3s;
    transition:         0.3s;
    opacity: 100% !important;
}

.previewfadeout {
    pointer-events: none;
    -webkit-transition: 0.3s;
    -moz-transition:    0.3s;
    -ms-transition:     0.3s;
    -o-transition:      0.3s;
    transition:         0.3s;
    opacity: 0% !important;
}

.fadein {
    -webkit-transition: 1s;
    -moz-transition:    1s;
    -ms-transition:     1s;
    -o-transition:      1s;
    transition:         1s;
    opacity: 100% !important;
    translate: 0 0;
}

.fadeout {
    -webkit-transition: 1s;
    -moz-transition:    1s;
    -ms-transition:     1s;
    -o-transition:      1s;
    transition:         1s;
    opacity: 0% !important;
}

.symage:hover {
    -webkit-transition: 0.3s;
    -moz-transition:    0.3s;
    -ms-transition:     0.3s;
    -o-transition:      0.3s;
    transition:         0.3s;
    scale: 0.99;
    opacity: 70% !important;
}