body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: auto 0;
    background-color: var(--lightcolor);
    background-image: url("images/cloverbg.gif");
    background-position: center;
    color: var(--darkcolor);
    font-size: 14px;
    letter-spacing: 0.15px;
}

#flex {
    display: flex;
    gap: 6px;
}

#container {
    max-height: 400px;
    flex-direction: column;
    position: relative;
    column-gap: 6px;
    max-width: 700px;
}

#left {
    background-color: transparent;
    float: left;
    display: flex;
    flex-direction: column;
    width: 186px;
    height: 400px;
}

.leftcolumn {
    text-align: justify;
    background-color: var(--lightcolor);
    background-image: url("https://atteliere.neocities.org/images/about.png");
    background-repeat: no-repeat;
    background-size: 186px;
    background-position: center;
    padding: 10px;
    border: 1px solid var(--lightgrey);
    width: 100;
    height: 100%;
    font-size: smaller;
}

#right {
    margin: 0 auto;
    background-color: transparent;
    float: right;
    display: flex;
    flex-direction: column;
    width: 492px;
    max-height: 400px;
}

.tab {
    border: 1px solid var(--lightgrey);
    height: 400px;
    padding: 10px;
    text-align: justify;
    background-color: var(--lightcolor);
    overflow-x: hidden;
    overflow-y: scroll;
}

.tab:not(:target) {
    display: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

h2 {
    padding: 4px;
    font-family: "NHG";
    font-weight: normal;
    font-size: 24px;
    letter-spacing: -0.25px;
    line-height: 18px;
    background: #c3db04;
    background: linear-gradient(
        90deg,
        rgba(195, 219, 4, 1) 0%,
        rgba(195, 219, 4, 0.5) 75%,
        rgba(239, 238, 234, 0) 100%
    );
}

p {
    margin: 0;
}

#columns {
  display: flex;
  gap: 6px;
  font-size: smaller;
}

#Lcolumn {
  float: left;
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

#Rcolumn {
  float: right;
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.mainLcolumn {
  background-color: var(--lightcolor);
  padding: 10px;
  height: 100px;
  border: 1px dotted var(--lightgrey);
  overflow-y: scroll;
}

.mainRcolumn {
  background-color: var(--lightcolor);
  padding: 10px;
  height: 100px;
  border: 1px dotted var(--lightgrey);
  overflow-y: scroll;
}

h4, h5, h6 {
    font-family: "Batang";
    font-weight: normal;
    font-size: 14px;
}

ul.LnD {
    margin: 0;
    list-style: square;
    text-align: left;
    padding-left: 15px;
    color: var(--grey)
}

li::marker {
    color: var(--accent)
}

/* scrollbar */

.tab::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: #C3DB04;
    border-radius: 6px;
}

*::-webkit-scrollbar-thumb {
    background-color: #797874;
    border-radius: 6px;
}

.abovenav {
    font-family: "matrixtype";
    font-size: 10px;
    position: absolute;
    display: flex;
    top: -18px;
    justify-content: space-between;
    align-items: center;
}

a {
    color: var(--grey);
    transition: 0.2s ease;
}

a:hover {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-style: dashed;
    font-style: italic;
}

.abovenav a {
    color: var(--lightgrey);
    transition: 0.2s ease;
    text-decoration: none;
}

.abovenav a:hover {
    color: var(--accent);
    font-style: normal;
    letter-spacing: 1px;
}

dt {
    color: var(--lightgrey);
    font-family: 'MSUIGOTHIC';
}

dd {
    margin-top: 6px;
    margin-bottom: 6px;
}

