@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;700&display=swap');

body {
    background: #191b20;    
}

p, span, li, table, h2 {
    font-family: "IBM Plex Sans", sans-serif;
    color: #b9bdc8;
}

.block {
    display: block;
}

#alert {
    font-family: "IBM Plex Sans", sans-serif;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 540px;
    padding: 10px 20px;
    color: white;
    background: #a73f5f;
    border: 1px solid #bc6f86;
    border-radius: 10px;
}

#content {
    font-weight: 400;
    max-width: 500px;
    margin-top: 100px;
    padding: 40px;
    margin-left: auto;
    margin-right: auto;
    background: #24272e;
    border: 1px solid #3a3f4a;
    border-radius: 10px;
    box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.3);
    text-align: center;
}

#content-bottom {
    font-family: "IBM Plex Sans", sans-serif;
    padding: 20px 40px 40px 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
}

table {
    margin-left: 16px;
    margin-bottom: 16px;
}

.no-margin {
    margin-top: 0!important;
}

.center {
    text-align: center;
}

td.center {
    padding-right: 2px;
}

.bold {
    font-weight: 700;
}

.hidden {
    display: none;
}

li {
    margin-bottom: 4px;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid #4669B9;
    background: #2f333c;
    color: #c7cad3;
    text-decoration: none;
    font-weight: 700;
    transition-duration: 0.1s;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button:hover {
    background: #4669B9;
    border-color: #748fcb;
    color: white;
}

#stop {
    color: #748fcb;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 4px;
}

#stop:hover {
    color: white;
    background-color: #748fcb;
    text-decoration: none;
}



#open0 {
    width: calc(100% - 20px);
    text-align: center;
    display: block;
    background: #2f333c;
    color: #c7cad3;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #454b58;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#open0:hover {
    font-weight: bold;
}

#open1 {
    width: calc(100% - 20px);
    text-align: center;
    display: block;
    background: #2f333c;
    color: #c7cad3;
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #454b58;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 20px;
}

#open1:hover {
    font-weight: bold;
}

.open {
    border-bottom-left-radius: 0!important;
    border-bottom-right-radius: 0!important;
    font-weight: 700;
}

.open0-content {
    background: #2f333c;
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #454b58;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.open1-content {
    background: #2f333c;
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #454b58;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}







#fucked {
    animation: flash 1.1s steps(2, start) infinite;
}

@keyframes flash {
    to {
        visibility: hidden;
    }
}









/* For the cursed mobile users */

@media screen and (max-width: 600px) {
    #content {
        margin-top: 10px;
    }
}























































