body {
    background-color: #141316;
}

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

.title {
    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;
}

.nav {
    grid-area: nav;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: white;
    font-family: "Kanit", sans-serif;
    font-weight: 500;
    font-size: x-large;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    margin-left: 5%;
    margin-right: 5%;
}

a {
    text-decoration: none;  /* Removes underline */
    color: white;           /* Sets link color */
    margin-block-start: 1em;
    margin-block-end: 1em;
}

a:hover {
    color: #04724D;         /* Optional: change color on hover */
}

.main {
    grid-area: main;
    display: flex;
    justify-content: center;
    color: white;
    font-family: "Kanit", sans-serif;
    font-weight: 500;
    font-size: x-large;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.list {
    margin-block-start: 0;
    margin-block-end: 0;
}
