body {
  background-color: #434d29;
  color: #6D9919;
  font-family: "Pixelify Sans", sans-serif;
  
  .element-w-color {
  background-color: #160F0B; /* Fills the area inside the border with light blue */
  padding: 20px; /* Optional: adds space between the content and the border/background */
  }
  
  .welcome-color {
    color: #77a81b;
  }
  .text-box {
  padding: 15px;
  margin: 12px;
  text-align: center;
  width: 400px;
  }
  .solid-green {
  border: 2px solid #77a81b;
  }
  .dashed-green {
  border: 3px dashed #77a81b;
  }

  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  min-height: 100vh; /* Ensures body takes full viewport height */
  margin: 0 auto;
  
  .pixelify-sans {
  font-family: "Pixelify Sans", sans-serif;
  }
  
  #wrapper {
  width: 960px; /* Or any desired width */
  margin: 0 auto; /* Centers the block horizontally */
  }
}

a {
  color: #98d817;
}

