  
  /* MAIN BODY + TYPOGRAPHY */
  body {
    background-color: #ddd;
    background-image: url(Raphanus-sativus.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    
    color: #59684a;
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 1px;
    
    margin: 69px 15% 69px 15%;
    
    border-radius: 5px;
  } 
  
  a, a:link {
    color:#a78ba7;
  }
  
  /* EXTRA */
  ::-webkit-scrollbar {
    width: 15px;
  }
  ::-webkit-scrollbar-track {
    background: #70865e;
  }   
  ::-webkit-scrollbar-thumb {
    background: #9ba37b;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #989f40;
  }
  
  button{
    color: #8f9467;
    font-family: monospace;
    font-size: 22px;
    letter-spacing: 1px;
  }
  
  html{
    cursor: url('cursor.png'), auto;
  }
  
  #whole{
    float: center;
    width: 100%;
    overflow: hidden;
    margin: 5px;
    padding: 10px;
    border-radius: 3px;;
  }
  
  *, *:before, *:after {
    box-sizing: border-box;
  }
  
  .wrapper {
    max-width: 940px;
    margin: 0 20px;
    display: grid;
    grid-gap: 10px;
  }
  
  @media screen and (min-width: 500px) {
    .sidebar {
    float: left;
    width: 46%;
  }
  
  .wrapper {
    margin: 0 auto;
    grid-template-columns: 1fr 3fr;
  }
  
  .header, .footer {
    grid-column: 1 / -1;
    clear: both;
  }
  
  .wrapper > * {
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 10px;
  }
  
  @supports (display: grid) {
    .wrapper > * {
    width: auto;
    margin: 0;
  }
  }
  
  section::after {
    content: "";
    display: table;
    clear: both;
  }
  
  .tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 2px dotted #5DF752;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #70865e;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px 0;
  
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -60px;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }
  
  .tab {
    overflow: hidden; 
    background: #eee;
  }
  .tab button {
    background: #eee; 
    float: left; 
    border: none; 
    outline: none; 
    cursor: pointer; 
    padding: 14px 16px; 
    transition: 0.3s;
  }
  .tab button:hover {
    background-color: #ddd;
  }
  .tab .active {
    background-color: #ddd;
  }    
  .tabcontent {
    display: none; 
    padding: 6px 12px; 
    border: 1px solid #eee; 
    border-top: none; 
    background: #eee;
  }
  .tabcontent {
    animation: fadeEffect 0.5s;
  }
  @keyframes fadeEffect {
  from {opacity: .5;} to {opacity: 1;}
  }
  .vertical-tabs {
    display: flex;
    margin: 30px 0;
  }
  .tab-buttons {
    display: flex;
    flex-direction: column;
    margin-right: 16px;
  }
  .tab-btn {
    background: #aaa;
    border: none;
    padding: 12px 18px;
    margin-bottom: 4px;
    cursor: pointer;
    font-size: 1rem;
    color: #8f9467;
    transition: background 0.2s;
  }
  .tab-btn.active, .tab-btn:hover {
    background: #ddd;
    color: #8f9467;
  }
  .tab-content {
    flex: 1;
    background: #ddd;
    padding: 18px;
    min-height: 120px;
  }
  .tab-panel {
    display: none;
  }
  #top_banner {
    font-family:monospace;
    background:#4C542D;
  }
  
  .collapsible {
    background-color: #ddd;
    color: #59684a;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
  }
  .active, .collapsible:hover {
    background-color: #ddd;
  }
  .collapsible:after {
    content: '\002B';
    color: #59684a;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  .active:after {
    content: "\2212";
  }
  .content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #eee;
  }
  
  
  
  
  
