    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    @media (max-width: 800px) {
        .navbar {
        flex-direction: column;
        }
        
    }
    body{
        font-family: Garamond;
        background-color: lightblue;
    }
    header{
        display: flex;
        background-color: white;
        justify-content: center;
        width: 100%;
    }
    header h1{
        font-size: 2.5rem;
        text-decoration: underline;
    }
    .bold{
        font-weight: bold;
    }
    .underline{
        text-decoration: underline;
    }
    .red{
        color: red;
    }
    .bignumber {
        font-size: 2.2rem;
        line-height: 0.1;
    }
    .title{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex: 1;
        height: 150px
    }
    .title p {
        padding-top: 10px;
    }
    .navbar{
        display: flex;
        background-color: #333;
        justify-content: space-evenly;
        align-items: stretch;
        flex-wrap: nowrap;
        width: 100%;
    }
    .item{
        flex: 1;
        padding: 5px;
        text-align: center;
        text-decoration: none;
        color: white;
    }
    .item:hover{
        background-color: white;
        color: #333;
    }
    charsheet{
        display: grid;
        grid-template-columns: .25fr .5fr 1fr 1fr;
        grid-template-areas: 
        'scorebar namebar namebar namebar'
        'scorebar skillbar attributes attributes'
        'scorebar skillbar attacks attacks';
        gap: 1rem;
        padding: 1rem;
    }
    .namebar{
        background-color: antiquewhite;
        text-align: center;
        border-style: solid;
        border-width: medium;
        border-radius: 15px;
        grid-area: namebar;
    }
    .scorebar{
        grid-column: span 1;
        grid-area: scorebar;
        grid-column-start: 1;
        min-height: 0;
    }
    .scores{
        display: grid;
        gap: 1rem;
        grid-template-columns: 1fr;
        height: 100%;
    }
    .score{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0em 1rem;
        background-color: antiquewhite;
        border-style: solid;
        border-width: small;
        border-radius: 13px;
        height: 100%;
    }
    .scorenum{
        font-size: 2.5em;
    }
    .scorename{
        text-align: center;
    }
    .skillbar{
        background-color: antiquewhite;
        text-align: center;
        border-style: solid;
        border-width: medium;
        border-radius: 15px;
        grid-area: skillbar;
    }
    .attributes{
        background-color: antiquewhite;
        text-align: center;
        border-style: solid;
        border-width: medium;
        border-radius: 15px;
        grid-area: attributes;

    }
    .attacks{
        background-color: antiquewhite;
        text-align: center;
        border-style: solid;
        border-width: medium;
        border-radius: 15px;
        grid-area: attacks;
    }
    @media screen and (max-width: 800px) {
        charsheet {
            grid-template-columns: 1fr 1fr;
            grid-template-areas: 
                'namebar namebar'
                'scorebar scorebar'
                'skillbar attributes'
                'skillbar attacks';
        }
        .scores{
            grid-template-columns: 1fr 1fr;
        }
    }
    .header-text{
        display: inline;
        font-size: 2rem;
        padding: 0 1rem;
    }
    .skilltitle{
        line-height: 2rem;
    }
    .skill{
        padding: .5rem;
    }
    .attributes{
        display: grid;
        grid-auto-flow: column;
    }
    .att{
        border-style: solid;
        border-radius: 15px;
    }
    .playertables{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .table{
        border-style: solid;
        border-width: medium;
        border-radius: 15px;
        background-color: antiquewhite;
        margin: .5rem;
    }
    .table ul{
        list-style: none;
        text-align: center;
    }
    .table h4{
        text-align: center;
        text-decoration: bold;
        text-decoration: underline;
        margin-bottom: .3rem;
    }
    .name{
        font-weight: bold;
    }