
body {
    background-color: rgb(255, 255, 255);
    font-family: monospace;
    line-height: 1.75;
}

nav {
    width: 200px;
    height: 200px;
    border-style: dashed;
    border-width: 1px;
    border-color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    background: rgb(184, 171, 255);
    position: fixed;
    left: 0px;
    bottom: 0px;
    text-align: center;
    line-height: 1.25;
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
}

.article {
    position: fixed;
    width: calc(34vw - 200px);
    height: calc(100vh);
    top: calc(0vh);
    left: calc(200px);
    border-style: dashed;
    border-width: 1px;
    border-color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    background: rgb(163, 252, 255);
    overflow: scroll;
    padding: 40px;
    box-sizing: border-box;
    font-family: monospace;
    font-size: 1.1em;
    line-height: 2;
    list-style-position: inside;
}

.article::-webkit-scrollbar {
    display: none;
}

.platforms {
    position: fixed;
    text-align: center;
    width: calc(200px);
    height: calc(100vh - 200px);
    top: calc(0vh);
    left: calc(0vw);
    border-style: dashed;
    border-width: 1px;
    border-color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    background: rgb(255, 187, 196);
    overflow: scroll;
    padding: 40px;
    box-sizing: border-box;
    font-family: monospace;
    font-size: 1.1em;
    line-height: 2;
    list-style-position: inside;
    z-index: -1;
}

.platforms::-webkit-scrollbar {
    display: none;
}

.albums {
    position: fixed;
    text-align: center;
    width: calc(33vw);
    height: calc(100vh);
    top: calc(0vh);
    left: calc(34vw);
    border-style: dashed;
    border-width: 1px;
    border-color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    background: rgb(239, 255, 94);
    overflow: scroll;
    padding: 40px;
    box-sizing: border-box;
    font-family: monospace;
    font-size: 1.1em;
    line-height: 2;
    list-style-position: inside;
    z-index: -1;
}

.albums::-webkit-scrollbar {
    display: none;
}

.books {
    position: fixed;
    text-align: center;
    width: calc(33vw);
    height: calc(100vh);
    top: calc(0px);
    left: calc(67vw);
    border-style: dashed;
    border-width: 1px;
    background: rgb(155, 255, 188);
    border-color: rgb(0, 0, 0);
    color: rgb(0, 0, 0);
    overflow: scroll;
    padding: 40px;
    box-sizing: border-box;
    font-family: monospace;
    font-size: 1.1em;
    line-height: 2;
    list-style-position: inside;
    z-index: -1;
}

.books::-webkit-scrollbar {
    display: none;
}

.image {
    position: fixed;
    text-align: center;
    width: calc(50vw - 200px);
    height: calc(100vh);
    top: calc(0vh);
    left: calc(200px);
    border-style: dashed;
    border-width: 1px;
    background: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0);
    overflow: hidden;
    box-sizing: border-box;
    background: url("images/aboutme/tetsuhiro-wakabayashi-sunset-cat.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100vh;
}

.image > p {
    color: black;
    position: fixed;
    text-align: center;
    width: calc(40vw - 200px);
    bottom: calc(25px);
    left: calc(200px + 5vw);
    border-style: dashed;
    border-width: 1px;
    background: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0);
}

ul {
    display: block;
    list-style-type: none;
    margin-top: 1em;
    margin-bottom: 1 em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0px;
}

a {
    color: black;
}

a:hover {
    color: black;
}

a:active {
    color: black;
}

a:visited {
    color: black;
}

::selection {
    color: rgb(235, 235, 235);
    background: black;
}