:root {
    --purple: #912FBF;
    --bgc: darkcyan;
    --wgrey: #C0C0C0;
    --zing: powderblue;
    --dim: #808080;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: var(--bgc);
    font-family: "Times New Roman";
    font-size: large;
    margin: 0;
    display: flex;
    height: 80vh;
    align-items: center;
}
.main-box{
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: auto auto;
    background: var(--wgrey);
    padding: 4px;
    justify-self: center;
}
.top-bar{
    background: linear-gradient(to right, black, black, var(--purple)) 100% 0;
    background-size: 190% 100%;
    color: var(--zing);
    width: 100%;
    display: flex;
    align-items: center;
    font-family: "Lucida Console";
    font-size: x-large;
}
.ico{
    width: 1.5em;
    height: 1.5em;
}
.tabs{
    display: flex;
    font-family: Arial;
    padding: 2px;
}
.tab{
    text-decoration: none;
    color: black;
    padding-right: 1ch;
}
.ul{
    text-decoration: underline;
}
.title{
    font-size: xx-large;
    font-weight: bold;
    margin-top: 0;
}
.title-c{
    justify-self: center;
    margin-bottom: 0;
}
.halves{
    display: flex;
}
.box-content{
    display: flex;
}
.text-content{
    background: white;
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.labeled{
    padding-bottom: 0.5em;
    padding-top: 0.5em;
}
input[type=radio]{
    accent-color: black;
}
.buttons{
    display: flex;
    justify-content: end;
    background: var(--wgrey);
    margin: 8px 0;
}
.bt {
    border-style: outset;
    padding: 0.25em 1.5em;
    margin: 0 0.5em;
    text-decoration: none;
    font-family: Arial;
}
button {
    all: unset;
}
.dim{
    color: var(--dim);
    text-shadow: 1px 1px white;
}
.lit{
    color: black;
    border-color: black;
}
.search-row{
    display: flex;
    width: 100%;
}
.search-bar{
    flex: 1;
}
.search-button{
    padding: 0.5em;
}

@media(max-width: 800px) {
    .sidebar{
        visibility: hidden;
        width: 0;
    }
}