body {
    background-color: #141316;
}

#body {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    grid-template-areas:
        "header"
        "nav"
        "main";
}

.testtitle {
    grid-area: header;
    display: flex;
    justify-content: center;
    font-family: "Kanit", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: white;
    font-size: xx-large;
}
