body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #333;
    color: #fff;
    min-height: 100vh;
    flex-direction: column;
    display: flex;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    background-color: #222;
    padding: 20px;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
  }
  
  .navbar-item {
    margin-right: 20px;
  }
  
  .navbar-item a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .navbar-item a:hover {
    color: #fdca53;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    color: #fdca53;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    color: #fdca53;
    background-color: black;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  footer {
    text-align: center;
    background-color: #222;
    padding: 20px;
    margin-top: auto;
  }
  
  footer p {
    font-size: 14px;
    color: #fff;
  }

  .space {
    margin-bottom: 20px;
  }

  .space2 {
    margin-bottom: 194px;
  }

  .overview-bolded{
    display: flex;
    font-weight: bold;
    margin-left: 120px;
  }

  .overview-normal{
    display: flex;
    margin-left: 120px;
    font-weight: bold;
    color: lightgray; 
  }
  
  .chart-container {
    border: 2px solid #fdca53;
    border-radius: 10px;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  
  .row {
    display: flex;
    align-items: center;
  }
  
  .skill {
    flex: 1; 
    background-color: #333;
    border-radius: 5px;
    padding: 10px;
    font-weight: bold;
    text-align: center;
  }
  
  .skill-value {
    flex: 1;
    background-color: #222;
    border-radius: 5px;
    padding: 10px;
    font-weight: bold;
    text-align: center;
  }

  .skill-space {
    color: lightslategray;
  }

  .maxhealth-text{
    color: #FF69FE;
  }

  .regen-text{
    color: #F9F96E;
  }

  .speed-text{
    color: #87FFFF;
  }

  .combat-text{
    color: #DC2D2A;
  }

  .ct-text{
    color: #9083F3;
  }

  .wisdom-text{
    color: #00ABAB;
  }

  .luck-text{
    color: #00C22E;
  }


  .positive-attribute{
    color: lightgreen;
  }

  .negative-attribute{
    color: lightcoral;
  }

  .neutral-attribute{
    color: yellow;
  }

  .center {
    max-width: 400px;
    padding-left: 750px;
    box-sizing: border-box;
  }

  .center-header{
    text-align: center;
  }
  
  .combat-attribute {
    color: #D92E2E;
  }
  
  .archery-attribute {
    color: #C4FFFF;
  }

  .defense-attribute {
    color: #927EF7;
  }

  .endurance-attribute {
    color: #FC68FC;
  }

  .mining-attribute {
    color: #26C726;
  }

  .farming-attribute {
    color: #FAFA6E;
  }

  .forging-attribute {
    color: #18ADAD;
  }

  .skill-text {
    color: #00A1F2;
  }

  .potion-info{
    color: #FF5452;
  }

  .potion-names{
    color: #AAF98F;
  }

  .potion-cost{
    color: #FFA504;
  }

  .biome-lore{
    color: #A8A8A8;
  }

  .oakmeadows{
    color: #9B7C4A;
  }

  .birchthicket{
    color: #D0B87F;
  }

  .sprucewoodland{
    color: #7B5833;
  }

  .power{
    color: #EE68B4;
  }

  .area{
    color: yellow;
    font-weight: bold;
  }