@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rye&display=swap');

body {
    background-color: white;
}

#sheet {
    max-width: 85%;
    margin: auto;
    font-family: 'Jost', Arial, Helvetica, sans-serif;
}

#details {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

h1 {
    font-family: 'Rye';
    margin-bottom: 0em;
}

h2 {
    border-top: solid 2px black;
    border-bottom: solid 2px black;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
}

th {
    text-align: left;
    padding: 0.1em;
    font-weight: 600;
}

.deleteme {
    transition: all 0.5s;
    cursor: pointer;
}

.deleteme:hover {
    color: darkred;
}

.hidden {
    animation: hideItem 1s;
    animation-fill-mode: forwards;
    cursor: default
}

@keyframes hideItem {
    0% {opacity: 100; filter: blur(0px);}
    100% {opacity: 0%; filter: blur(10px);}
}

.portraitframe {
    max-height: 10em;
    max-width: fit-content;
    border: solid 2px black;
    box-shadow: 2px 2px black;
    transition: all 0.5s;
    margin: 1em;

}


.portrait {
    max-height: 10em;
    transition: all 0.5s;
}

.portrait:hover {
    filter: hue-rotate(100deg);
}

table {
    padding: 0.2em;
    margin: 1em;
    border: solid 2px black;
    box-shadow: 2px 2px black;
}

.stat-table th {
    padding-right: 1em;
}

.stat-table td {
    padding-right: 0.5em;
}

.text-table th{
    padding: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    border-bottom: solid 1.5px black;
}

.text-table td ul {
    margin-left: 0em;
    margin-right: 1em
}

.attr {
    font-weight: 500;
}