
.diagContainer{
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0,0,0,0.4);
}

body:has(.diagContainer){
    overflow: hidden;
    height: 100vh;
    width: 100vw;   
}

.dialog{
    position: absolute;
    z-index: 101;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    padding: 1em;
    border-radius: 1em;
    box-shadow: 0 0 1em rgba(0,0,0,0.4);
    max-width: 450px;
    max-height: 90vh;
}

.dialog .btn.split{
    width: calc(50% - 2em - 1px);
    margin: 1em 1em 0 1em;
}

.btndiv{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.description{
    font-size: large;
}

#pfp, #charImage{
    width: 200px;
    height: 200px;
}

.nb{
    font-weight: normal;
    font-size: medium;
}

.bigtitle{
    font-size: xx-large;/*fallback if xxx-large is not supported*/
    font-size: xxx-large;
    font-weight: bold;
}