body {
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: #2b0040; /* dark purple */
  color: #90ee90; /* light green */
}

h1 {
  margin-top: 30px;
  font-size: 4rem;
  color: #90ee90;
  -webkit-text-stroke: 1px black; /* black stroke for WebKit browsers */
  text-stroke: 8px black; /* fallback for others */
  border-bottom: 0cm;
}
/* Screens smaller than 680px */
@media screen and (max-width: 680px) {
  h1 {
    font-size: 3rem; /* smaller for mobile */
  }
}

h2{
  font-size: 2rem;
  color: #90ee90;
  margin: 2%;
}
/* Screens smaller than 680px */
@media screen and (max-width: 680px) {
  h2 {
    font-size: 1.5rem; /* smaller for mobile */
  }
}

h3{
  font-size: 2rem;
  color: #90ee90;
  margin: 2%;
}

/* Screens smaller than 680px */
@media screen and (max-width: 680px) {
  h3 {
    font-size: 1.2rem; /* smaller for mobile */
  }
}

/* Screens smaller than 400px */
@media screen and (max-width: 400px) {
  h3 {
    font-size: 1rem; /* very small screens */
  }
}

a {
  color: #90ee90;
  text-decoration: none;
  -webkit-text-stroke: 1px black;
  text-stroke: 1px black;
}

img {
  margin: 1px;
  transition: transform 0.2s;
  border: 1px;
  max-width: 99%;   /* don’t overflow parent container */
  height: auto;
}

a img:hover {
  transform: scale(1.05);
}

img #hypixel {
    size: 50px;
}

#box {
  background-color: rgba(255, 255, 255, 0.1); /* semi-transparent white (or any color) */
  border: 2px solid #90ee90;  /* light green border */
  border-style: double;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  margin: 20px auto;
  max-width: 800px;
}

/* To ensure images inside boxes don’t overflow: */
#box img {
  max-width: 70%;
  height: auto;
}

/* You might want spacing between links: */
#box a {
  margin: 0 10px;
}

/* Wrapper creates the outer border with spacing */
.progress-wrapper {
  display: inline-block;
  padding: 8px; /* space between border and bar */
  border: 3px solid #90ee90; /* light green border */
  background-color: transparent;
}

/* Inner bar container */
.progress-bar {
  width: 400px;     /* adjust as needed */
  height: 30px;
  background-color: #345734; /* dark background */
  position: relative;
  margin: 2px auto;
  height: 25px;        /* slightly smaller for mobile */
}

/* Screens smaller than 680px */
@media screen and (max-width: 680px) {
  .progress-bar {
    width: 200px;
  }
}

/* Fill inside the bar */
.progress-fill1 {
  width: 60%; /* static progress percentage */
  height: 100%;
  background-color: #90ee90;
  color: black;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
}

/* Fill inside the bar */
.progress-fill2 {
  width: 100%; /* static progress percentage */
  height: 100%;
  background-color: #90ee90;
  color: black;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
}

/* Fill inside the bar */
.progress-fill3 {
  width: 100%; /* static progress percentage */
  height: 100%;
  background-color: #90ee90;
  color: black;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
}

/* Fill inside the bar */
.progress-fill4 {
  width: 100%; /* static progress percentage */
  height: 100%;
  background-color: #90ee90;
  color: rgb(0, 0, 0);
  font-weight: bold;
  text-align: center;
  line-height: 30px;
}
/* Navigation bar */
.navbar {
  background-color: #180024; /* dark bar */
  padding: 10px 0;
  border-bottom: 3px solid #90ee90; /* green accent */
  position: sticky; /* stays at top when scrolling */
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;   /* wrap links on narrow screens */
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-evenly; /* evenly distribute links */
  align-items: center;
  width: 100%;
}

.navbar li {
  display: inline;
}

.navbar a {
  color: #90ee90;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: bold;
  -webkit-text-stroke: 1px black;
  text-stroke: 1px black;
}

.navbar a:hover {
  color: #cfffca; /* lighter green on hover */
  text-decoration: underline #cfffca;
}

h2 a{
  margin-top: 30px;
  font-size: 4rem;
  color: #90ee90;
  -webkit-text-stroke: 1px black; /* black stroke for WebKit browsers */
  text-stroke: 8px black; /* fallback for others */
  border-bottom: 0cm;
  justify-content: space-evenly;
  text-align: center;
  display: flex;
}
/* Sections adapt to screen width */
.section.box {
  width: 90%;          /* use most of the screen width */
  max-width: 800px;    /* but don’t get too wide on desktop */
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
}