body {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: red;
}

h1 {
    font-size: 24px;
    color: blue;
}

.header {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 5px;
    gap: 10px;
    background-color: rgb(235, 212, 212);
}

.vbar {
    height: 30px;
    width: 2.5px;
    border-radius: 5px;
    background-color: black;
}

.hstack {
    display: flex;
    height: 100vh;
    padding: 10px 0 0 0;
    gap: 10px;
    flex-direction: row;
}

.nav {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    width: 15vw;
    height: 100%;
    padding: 20px;
    gap: 15px;
    background-color: rgb(235, 212, 212);
}

.content {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    height: 100%;
    width: 70%;
    padding: 20px;
    gap: 15px;
}