:root {
    text-autospace: normal;
}

body {
    padding: 0;
    margin: 0;
    color: #485262;
    font-family: "Inter", Helvetica, "Noto Sans SC", sans-serif;
    font-size: 1.1em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Serif SC";
}

h3, h4 {
    padding-inline-start: 0.5em;
    border-left: 0.3em #b8ccd8 solid;
}

header nav a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.1s;
}

header a, header a:visited {
    color: #485262;
}

header a:hover {
    color: white;
    text-shadow: 0px 0px 4px rgba(0,0,0,0.2);
}

header a#nav-1:hover {
    background-color: #6ddcff;
}

header a#nav-2:hover {
    background-color: #ffa0b7;
}

header a#nav-3:hover {
    background-color: #ffcc84;
}

header a#nav-4:hover {
    background-color: #b7f36a;
}

header a#nav-5:hover {
    background-color: #ceaaed;
}

a, a:visited {
    color: #42bfe8;
}

a:hover {
    color: #6ddcff;
}

a, a:hover, a:visited {
    text-decoration: none;
}

header {
    height: 80px;
    width: 100%;
    border-bottom: 2px #88a3bc solid;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.07);
}

footer {
    margin: 30px auto;
    width: 1100px;
    padding: 15px 0;
    border-top: 2px #88a3bc solid;
    font-size: 0.8em;
    color: #88a3bc;
    text-align: center;
}

.banner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

nav {
    width: 65%;
    max-width: 600px;
    display: flex;
    justify-content: flex-end;
}

.side ul {
    list-style: none;
    padding-inline-start: 0;
}

.side ul > li {
    margin: 10px;
}

nav > ul, nav > ol {
    list-style: none;
}

nav > ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

nav > ul > li {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    margin: 0 auto;
    max-width: 1100px;
}

.indexframe {
    display: grid;
    grid-template-areas: "main side";
    grid-template-columns: repeat(12, [col-start] 1fr);
}

.indexframe .main, .indexframe .side {
    padding: 8px;
}

.indexframe .main {
    grid-column: 1 / span 9;
}

.indexframe .side {
    grid-column: 10 / span 3;
}

.update {
    font-size: 0.8em;
    padding: 0 8px;
}

.update .date {
    font-weight: bold;
    color: #9c8bdb;
    padding: 3px 0;
} 

.update .upcon {
    padding-bottom: 3px;
}

.work-entry {
    display: flex;
}

.thumb-wrap {
    padding-left: 0.8em;
    padding-right: 10px;
}

.thumb {
    height: 200px;
    width: 250px;
    background-color: #dceaee;
}

.thumb-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-entry {
    padding: 1.1em 0;
    transition: 0.2s;
}

.work-entry:hover {
    background-color: #dceaee;
}

.work-entry .title a {
    color: #485262
}

.work-entry .title a:hover {
    color: #5e718e
}

.work-entry .title {
    font-size: 1.8em;
}

.work-entry .desc {
    margin-bottom: 1.2em;
}

.work-entry .release {
    color: #696682
}

.announcement {
    width: 90%;
    margin: 15px auto;
    height: 30px;
    padding: 8px 15px;
    border-radius: 12px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
    border: 0.05em #b8ccd8 solid;
}

.embla {
  --slide-size: 100%;
  --slide-spacing: 10px;
  display: flex;
  align-items: center;
}

.embla__viewport {
  overflow: hidden;
}

.embla__container {
  display: flex;
  touch-action: pan-y pinch-zoom;
}

.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.content, footer {
    clear: both;
}

.content table {
    padding: 10px;
    width: 100%;
    border-spacing: 0;
}

th {
    text-align: left;
}

.content table > thead > tr > th, .content table > tbody > tr > td {
    padding: 8px;
}

.content table > thead > tr > th {
    border-bottom: #485262 2px solid;
}

.content table > tbody > tr > td {
    border-bottom: #88a3bc 1px solid;
}