html, body {
    margin: 0;
    font-size: 14px;
    font-family: sans-serif;
    height: 100%;
    background-color: black;
    box-sizing: border-box;
    padding: 0 10px 0 10px;
    /* background-color: rgb(201, 221, 230); */
    /* background-color: rgb(255, 217, 160); */
}

.page-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    max-width: 1050px;
    min-height: 100%;
    background-image: url('/assets/images/leaves.jpeg');
    background-size: cover;
    box-sizing: border-box;
    padding: 0 20px 0 20px;
}

.page-contents {
    display: flex;
    max-width: 750px;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    background-color: white;
}

.ws-nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 24px;
    background-color: rgb(22, 52, 151);
    box-sizing: border-box;
    padding: 0;
    line-height: 24px;
    padding: 0 10px 0 10px;
    color: white;
}

.ws-nav > .link {
    display: inline-block;
    color: white;
    height: 24px;
    padding: 0 10px 0 10px;
    margin: 0;
    line-height: 24px;
    text-decoration: none;
}

.home-splash {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 110px;
    background-image: url('/assets/images/ramen.jpg');
    background-position: center;
    background-size: cover;
    /* background-size: 110%; */
}

.home-splash > .title {
    margin: 0;
    font-size: 40px;
    color: white;
    text-shadow: 2px 2px black;
}

.home-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-grow: 1;
    box-sizing: border-box;
    padding: 0 10px 0 10px;
}

.home-motd {
    max-width: 600px;
    box-sizing: border-box;
    padding: 10px;
    /* border: 1px solid red; */
    margin: 10px 0 0 0;
    font-size: 13px;
    border: 1px solid rgb(237, 221, 121);
    background-color: rgb(255, 244, 173)
}

.home-catlg {
    width: 100%;
    box-sizing: border-box;
    /* padding: 0 10px 0 10px; */
    /* background-color: orange; */
}

.blog-entry {
    border-bottom: 1px solid #e9e9e9;
    padding: 10px 0 10px 0;
}

.blog-entry:last-child {
    border-bottom: none;
}

.blog-entry .title {
    font-size: 16px;
    margin: 0;
}

.blog-entry .title a {
    color: black;
}

.blog-entry .desc {
    margin: 5px 0 5px 0;
}

.blog-entry .info {
    color: #808080;
}

.home-section-title {
    font-size: 28px;
    margin: 5px 0 5px 0;
}

.ws-footer {
    text-align: center;
}

.ui-c-center {
    width: 100%;
    margin: 0 auto;
}