@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    height: 100%;
    padding: 0;
    margin: 0;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Barlow", sans-serif;
    background-color: #202020;
    background-image: url("/rsrc/img/bg.avif");
    background-size: cover;
    height: 100%;
    padding: 0;
    margin: 0;
}
h1 {
    font-weight: 400;
    margin: 0;
}
h3 {
    font-weight: 500;
    margin: 0;
}
p {
    margin: 0, 0, 30px, 0;
}
a {
    margin: 2px;
    color: white;
}
hr {
    border-color: #FFFFFF60;
}
pre {
    margin: 0; /* Why is this a thing?? */
}

#mainbox {
    width: 500px;
    height: fit-content;
    border-color: #FFFFFF40;
    background-color: #6161613f;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    color: white;
    backdrop-filter: blur(20px);
    text-align: center;
    padding: 32px;
}

.collapsible {
    background-color: transparent;
    color: white;
    cursor: pointer;
    margin: 0;
    padding: 8px;
    padding-left: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    font-family: "Barlow", sans-serif;
    border-style: solid;
    border-width: 1px;
    border-color: #FFFFFF40;
}
.active, .collapsible:hover {
    background-color: #0000000E;
    border-color: #FFFFFF20;
}
.content {
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #00000014;
    text-align: left;
}