body {
  background-color: rgb(225, 102, 143); /* Soft, light pinkish lavender tone */
  color: black; /* Black text for better contrast and readability */
  font-family: 'Times New Roman', monospace;
  margin: 50px;
}

/* Styling for headers with white color */
h2, h3, h4, h5, h6 {
  color: white; /* White headers for strong contrast against background */
  font-family: 'Times New Roman', monospace;
  margin-bottom: 10px;
}

h1 {
  margin-bottom: 20px;
}

p {
  color: whitesmoke; /* Black text for readability */
  margin-bottom: 20px;
}

section {
  margin: 50px 0;
}

a {
  font-family: 'Times New Roman', monospace;
  color: lightcyan;
  text-decoration: none; 
  font-weight: bold; 
  margin-bottom: 20px;
}
.tab_box{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 2px solid rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 600;
}

.tab_box .tab_btn{
  font-size: 18px;
  font-weight:600;
  color: black;
  background: none;
  border: none;
  padding: 18px;
  cursor:pointer;
}

.tab_btn:hover,
.tab_btn.active {
  color: white;
  background-color: rgba(0, 0, 0, 0.2); /* Optional background for active button */
}

.tab_btn.active {
  position: relative;
  font-weight: bold;
  color: white;
}

.tab_btn.active:hover::after {
  content: "You are here!";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
}