html,body {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    background-color: rgb(201, 201, 201);
}

.top-bar {
    color: white;
    background-color: rgb(119, 0, 0);
    display: flex;
    outline: 1px solid black;
    justify-content: space-evenly;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
}

.nav-list h1, .mid-body h1 {
    font-weight: 600;
    padding: 0;
    margin: 0;
    font-size: large;
}

.mid {
    padding: 5px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    color: black;
    flex-direction: row;
    gap: 5px;
    flex: 1;
    outline: 1px solid black;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 5px;
    /* display: flex; */
    outline: 1px solid black;
    background-color: white;
    justify-content: center;
    width: 250px;
    height: min-content;
}

.nav-list a {
    display: block;
    padding: 3px;
    padding-left: 5px;
    color: rgb(80, 80, 80);
    /* text-decoration: none; */
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: 1px dotted #000000;
}

.nav-list h1 {
    border-bottom: 1px dotted #000000;
}

.nav-list a:last-child {
    border-bottom: none;
}

.nav-list a:hover {
    background-color: rgb(238, 238, 238);
}

.mid-body {
    /* display: flex; */
    /* flex:1; */
    /* margin: 0; */
    height: min-content;
    width: 100%;
    min-height: 100px;
    outline: 1px solid black;
    padding: 5px;
    background-color: white;
}

p {
    margin: 0;
}