body {
    overflow: hidden;
    background: #000;
    color: #7822b1;
    font-family: monospace;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100%
}

.bgimg {
    display: hidden;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%
}

a {
    text-decoration: none;
    color: #7822b1;
    cursor: pointer
}

a:link {
    color: #7822b1
}

a:visited {
    color: #7822b1
}

a:hover {
    color: #ffff
}

a:active {
    color: blue
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-bottom: 20px
}

.card {
    display: none;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    width: 100%;
    height: 100%
}

.e {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background-color: #000;
    position: absolute;
    cursor: pointer;
    font-size: 20px;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center
}

.enter {
    flex: 0 0 120px
}

.banner {
    text-shadow: 1px 1px 2px #7822b1,1px 1px 2px #7822b1
}

.tag-1 {
    animation: color-change 1s infinite;
    display: inline;
    padding-left: 3px
}

td {
    color: red;
    text-align: left;
    padding: 10px;
    padding-left: 0;
    padding-right: 0
}

@keyframes color-change {
    0% {
        background-color: #7822b1
    }

    0% {
        color: orange
    }

    50% {
        background-color: orange
    }

    50% {
        color: red
    }

    100% {
        background-color: red
    }

    100% {
        color: orange
    }
}

.mobile-banner {
    display: none
}

@media(max-width: 650px) {
    .banner {
        display:none
    }

    .mobile-banner {
        display: block;
        font-size: 44px
    }

    .card {
        margin: 20px;
        width: 90%;
        padding: 5px;
    }

    .discord-widget {
        padding: 20px
    }
}

.center {
    text-align: center;
}

.big-fuckers {
    font-size: 32px;
}

.vcenter {
    display: flex;
    align-items: center;
    justify-content: center;
}