  .boxflex {
    display:flex;
    gap:5px;
    flex-wrap:wrap;
    align-items:center;
  }
  .boxflex.small > div {
    flex:1 1 50px;
  }
  .boxflex.small {
   align-items: stretch;
  }
  .boxflex > div {
    flex: 1 1 300px;
            place-items: center;
        align-content: center;
  }
  .box img {
    width:100%;
    max-width:200px;
    max-height:300px;
    border:1px solid black;
  }
  a {
    padding:2px;
    border:1px dotted green;
    color:green;
    text-decoration:none;
  }
  a:hover {
    text-decoration:underline;
    background:#e7f1d6;
  }
  a.uf {
    text-decoration: underline;
  }
  nav a {
    width:100%;
    display:block;
    padding:5px;
    border-top:3px dotted #e7f1d6;
    border-bottom:1.5px dotted #e7f1d6;
    border-left:none;
    border-right:none;
    color:green;
    text-decoration:none;
  }
  nav a:hover {
    text-decoration:underline;
    background:linear-gradient(to right, #e7f1d6, transparent);
  }
  nav {
    border:3px dotted #e7f1d6;
  }
  nav p {
    margin:0;
    padding:10px;
    background:darkgreen;
    color:#eff6e5;
  }
  .navigation a {
    color:black;
    font-size:1.2rem;
    text-decoration:none;
  }
  .navigation {
    margin-top:-10px;
    margin-bottom:10px;
  }
  .navigation a:hover {
    background:#e7f1d6;
  }
  h1, h2, h3, h4, h5 {
    color:darkgreen;
    margin:5px 0;
    word-break: break-all;
  }
  .box {
    border:3px dotted #e7f1d6;
    padding:10px;
    margin:5px 0;
  }
  .box p {
    margin:5px 0;
  }
main {
  display: inline-flex;
  background: white;
  padding: 5px;
  gap: 5px;
  box-sizing:border-box;
}
.sidebar {
  width: 280px;
  background: white;
  overflow-x:hidden;
}
.content {
  max-width: 800px;
    width: 100%;
  background: white;
}
  html {
    background:linear-gradient(to bottom, #eff6e5, #dae9be);
    min-height:100%;
  }
  body {
    justify-content: center;
    display: flex;
  }
  @media (max-width: 800px) {
    .boxflex.small > div {
    flex:1 1 150px;
  }
    nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 5px;
  background: white;
    }
    nav p {
      grid-column: 1 / -1;
    }
    nav a {
    width: 100%;
    display: block;
    border-top: 3px dotted #e7f1d6;
    border-bottom: 3px dotted #e7f1d6;
    border-left: none;
    border-right: 3px dotted #e7f1d6;
    }
    .sidebar {
      background:white;
    }
  main {
    width: 100%;
    flex-direction: column;
  }
  .sidebar,.content {
    width: 100%;
  }
  body, html {
    background:#dae9be;
    line-height: 1.2;
  }
  .sidebar {
    background:none;
  }
  .oncommand {
    text-align:center;
    background:linear-gradient(to bottom, transparent, #e7f1d6);
    border-bottom:2px solid #e7f1d6;
    padding-bottom:10px;
  }
  .navigation a:hover {
    color:#e7f1d6;
    background:darkgreen;
  }
}
h1.heading {
    margin: 0;
    margin-bottom:10px;
    font-size: clamp(40px, 10vw, 70px);
    background-clip: text;
    color: transparent;
    filter: drop-shadow(-1.6px 0 white) drop-shadow(1.6px 0 white) drop-shadow(0 -1.6px white) drop-shadow(0 1.6px white) drop-shadow(0 2px 2px #00000040);
    padding: 20px;
    background-image: linear-gradient(to bottom right, #2d8143, #051a05);
    line-height: 0.75;
}
::selection {
  background:#f1f7e6;
  color:green;
}
  ::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px darkgreen; 
}
::-webkit-scrollbar-thumb {
  background: darkgreen; 
}
::-webkit-scrollbar-thumb:hover {
  background: green; 
}