body {
    font-family: ms pgothic;
    color: white;
    background: #0e0e0e;
    margin: 0;
}

.container {
 width: 50em;
 margin: auto;
 padding: 1em;
}

.flex {
 display: flex; 
 justify-content: space-around;
}

.sidebar {
 width:10em;
}

.sidebar img {
 width: 100%; 
}

.nav {
display: block;
text-align: center;
margin: 1em;
}

.kami {
    width: 4em;
    margin: auto;
    display: block; 
}

.kami img {
 width: 100%; 
}

.files {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}
.files a {
    text-align: center;
    width:10em;
}
.files a:hover {
    text-decoration: none;
    cursor: help;
    color: white;
}
.files a::before {
    font-size: 4em;
    display: block;
}
.files .folder::before {
    content: '🖿';
}
.files .page::before {
    content: '🗎';
}
.files .site::before {
    content: '🌐︎';
}


a:hover {
    text-decoration: underline;
}
a:visited {
    color: #6d000a;
}
a {
    color: #b01;
    text-decoration: none;
}

::selection {
  background: #b01;
  color: white;
}