  figure {
    float:right;
    margin:10px;
    max-width: min-content;
  }
  .infobox .infoheader {
    width:100%;
    background:var(--infoheaderbg);
    justify-content: space-evenly;
    margin:0;
    padding:5px 0 5px 0;
  }
  .infobox img {
    display:block;
    margin:5px auto 5px auto;
  }
  .infobox {
    float:right;
    margin:10px;
    margin-top:0;
    width:400px;
    max-width:400px;
    border:2px solid var(--infoboxborder);
    font-size:initial;
  }
  .infobox table {
    width:100%;
    padding:5px;
  }
  .infobox td:first-child {
    font-weight: bold;
}
.infobox .category {
      background: var(--infoboxcategory);
    font-weight: normal;
    text-align: center;
    padding: 3px;
    display: block;
}
  .speciallink {
    color:var(--mainbg);
    background:var(--border);
    padding:3px;
  }
  .speciallink:hover {
    color:var(--slight);
  }
  .realcnotent {
    font-size:1.2em;
    line-height: 1.6;
  }
  .flagholder {
    color:var(--border);
    transition:0.5s;
  }
  .flagholder h1 {
  margin:0;
  }
  .flagholder {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
  }
  .flexme .others {
    width:260px;
    padding:10px;
    font-size:1.2em;
  }
  .others {
    top: 10px;
    position: sticky;
    max-height: calc(100vh - 74px);
    overflow-y:auto;
  }
  .flexme {
    display:flex;
    
    gap:5px;
  }
  .content {
    padding:10px;
    flex:1;
  }
  .flexme .content h1, h2, h3, h4 {
    border-bottom:2px solid var(--border);
  }
  .flexme .content h2, h3, h4 {
    display: flex;
  }
  .flexme .others h2 {
    border-bottom:2px solid var(--slight);
    margin-bottom:12px;
  }
  main {
    background:var(--mainbg);
    max-width:1600px;
    margin:auto;
    }
  .flag {
    
    max-width:180px;
    max-height:50px;
    background: var(--flag);
    border: 2px solid var(--flagborder);
    display: flex;
    align-items: center;
    justify-content: space-around;
    overflow: hidden;
    font-size:1.5em;
    color:var(--flagtext);
  }
  .header {
    padding:20px;
    padding-bottom:0;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
    justify-content: space-between;
    font-size:1.2em;
  }
  .header .links, .header img {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }
  .header .ee {
    flex: 1;
    height: 2px;
    background: var(--slight);
  }
  a {
    color:var(--link);
    text-decoration:none;
  }
  a:hover {
    text-decoration:underline;
    color:var(--linkhover);
  }
  .others a {
    display:block;
  }
  body {
    --flag:#eaeaea;
    --flagtext:lightgrey;
    --flagborder:lightgrey;
    
    --mainbg:white;
    --bodybg:#f7f9fa;
    --border:grey;
    
    --text:black;
    --link:#0080ff;
    --linkhover:#025db8;
    
    --slight:#eeeeee;
    
    --infoheaderbg:#eeeeee;
    --infoboxcategory:#eeeeee;
    --infoboxborder:#eeeeee;
    
    --scrollbartrack:lightgrey;
    --scrollbarthumb:#eeeeee;
    --scrollbarthumbhover:lightgrey;
    
    background:var(--bodybg);
    margin:0;
    color:var(--text);
    font-family: sans-serif;
  }
  h1, h2, h3, h4, h5 {
    font-family:'Times';
  }
  figcaption {
    font-size:0.9em;
    opacity:0.5;
    line-height:1;
    margin-top: -5px;
  }
  @media (max-width: 750px) {
    .flexme {
      flex-wrap:wrap;
    }
    .content {
      flex:initial;
    }
    .flexme .others {
      width:100%;
    }
    .others {
      position:initial;
      overflow:none;
      max-height:none;
    }
    figure {
      display:block;
      margin:10px auto 10px auto;
      float:none;
    }
  }
  @media (max-width: 900px) {
  .infobox {
      display:block;
      margin:auto;
      float:none;
      max-width:none;
      width:100%;
    }
  }
  ::selection {
    background:#cbe0ff;
    color:black;
  }
    ::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--scrollbartrack); 
}
::-webkit-scrollbar-thumb {
  background: var(--scrollbarthumb); 
}
::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbarthumbhover); 
}