* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: monospace;
    
}

body {
    -webkit-transition: all 0.5s ease-in;
    -moz-transition: all 0.5s ease-in;
    -ms-transition: all 0.5s ease-in;
    -o-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: white;
    height: 100%;
    width: 100%;
    text-shadow: 2px 2px 2px black;
    background-color: black;
}

.beforebg {
    width: 100vw;
    height: 100vh;
    background-color: black;
    z-index: -1000;
}

#bgBack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -100000;
}

#bgFrontWrap {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: none;
}

#bgFront {
    display: block;
    max-width: 70vw;
    max-height: 70vh;
    /* keep aspect ratio; wrapper shrink-wraps to these real dimensions */
    width: auto;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.7));
}

#bgFrontClose {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 10;
    line-height: 1;
    font-size: 28px;
    font-weight: 900;
    font-family: monospace;
    color: whitesmoke;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    -webkit-text-stroke: 1.5px whitesmoke;
    transition: color 0.2s ease, -webkit-text-stroke-color 0.2s ease;
}

#bgFrontClose:hover {
    color: grey;
    -webkit-text-stroke-color: grey;
}


/*html,body {

    background: rgb(30,30,30);

    background: linear-gradient(120deg, rgba(30,30,30,1) 0%, rgba(20,20,20,1) 100%);

}*/

.seller {
    font-family: monospace;
    color: whitesmoke;
    cursor: text;
}

.holder {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.textiboi {
    text-align: center;
    color: whitesmoke;
    font-family: monospace;
}

.textiboi:hover {
    color: grey;
}

#text2,
#text2:hover {
    color: #fff;
}

.header {
    text-align: center;
    color: whitesmoke;
    font-family: monospace;
    font-size: 40px;
}

.header a {
    text-decoration: none;
}

.hoverr:hover a {
    color: grey;
}

.header:hover {
    text-align: center;
    color: grey;
    font-family: monospace;
}

.container:hover .seller {
    color: white;
}

.container:hover a {
    color: grey;
}

.a {
    text-align: center;
    color: white;
    font-family: monospace;
}

.header:hover a {
    text-align: center;
    color: grey;
    font-family: monospace;
}

.icon {
    color: whitesmoke;
}

.icon i {
    font-size: 80px;
}

.container {
    text-align: center;
    margin: 5px 20px;
    float: left;
}

a {
    color: whitesmoke;
}

.container:hover .icon {
    color: var(--icon-color);
    font-size: 30px;
}

.container:hover .seller {
    color: grey;
}

.container:hover a {
    color: grey;
}

/* Mobile: make all the text much bigger */
@media (max-width: 768px) {
    .header {
        font-size: 46px;
    }

    .textiboi {
        font-size: 18px;
        line-height: 1.4em;
    }

    #typElement {
        font-size: 18px;
    }

    #bgFrontClose {
        font-size: 30px;
    }
}