body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fffeec;
  color: #333;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.menu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.menu li {
  margin: 0 15px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  position: relative;
  transition: color 0.3s;
}

.menu a:hover {
  color: #007bff;
}

.menu a:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #007bff;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #007bff;
  transition: width 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.content {
  position: absolute;
  top: 10%;
  height: auto;
  width: 100%;
  text-align: center;
  background-color: rgb(199, 199, 199);
}

#page_title {
  position: absolute;
  top: 10px;
  left: 35px;
  text-align: left;
  width: 100%;
  font-size: 60px;
  font-weight: bolder;
  color: rgb(45, 54, 32);
}

#education_btn {
  position: absolute;
  top: 10px;
  right: 100px;
  height: 20px;
  width: 100px;
  font-size: 15px;
  padding: 5px;
  text-align: center;
  background-color: rgb(255, 245, 229);
  border-radius: 10px;
  border: solid 1px rgb(16, 20, 13);
  cursor: pointer;
}

#education_btn:hover {
  position: absolute;
  top: 10px;
  right: 100px;
  height: 20px;
  width: 100px;
  font-size: 15px;
  padding: 5px;
  text-align: center;
  color: rgb(105, 207, 255);
  background-color: rgb(255, 245, 229);
  border-radius: 10px;
  border: solid 1px rgb(129, 204, 255, 0.445);
  box-shadow: 5px 5px 10px rgba(129, 204, 255, 0.445);
  cursor: pointer;
}

#close {
  position: absolute;
  top: 35px;
  right: 100px;
  height: 20px;
  width: 20px;
  font-size: 15px;
  padding: 5px;
  text-align: center;
  color: white;
  background-color: rgb(173, 24, 24);
  border-radius: 20px;
  border: solid 1px rgb(253, 255, 225);
  cursor: pointer;
}

#close:hover {
  position: absolute;
  top: 35px;
  right: 100px;
  height: 20px;
  width: 20px;
  font-size: 15px;
  padding: 5px;
  text-align: center;
  color: white;
  background-color: rgb(100, 0, 0);
  border-radius: 20px;
  border: solid 1px rgb(255, 61, 61);
  cursor: pointer;
}

#vmm266 {
  position: absolute;
  top: 150px;
  width: 100%;
}

#V266 {
  height: 300px;
  width: 500px;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

#body {
  position: absolute;
  top: 90px;
  right: 15%;
  width: 400px;
  height: auto;
  padding: 15px;
  line-height: 2;
  font-weight: bold;
}

table {
  width: 80%;
  margin: 30px auto;
  border-collapse: collapse;
}

td {
  padding: 20px;
}

#left_row {
  width: 30%;
  text-align: left;
  font-size: 30px;
  font-weight: bold;
}

#right_row {
  width: 70%;
  text-align: right;
}

#row {
  text-align: left;
}

/* Optional body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
}

#education {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(17, 17, 17, 0.658);
  z-index: 9999;
}

#ed_table {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}

#ed_td {
  position: relative;
  display: inline-block;
  height: 150px;
  width: 200px;
  padding: 0px;
  margin: 20px;
}


#ed_image {
  width: 100%;
  height: 100%; /* or a fixed size if needed */
  display: block;
  margin: 0px;
  padding: 0px;
}

#ed_sqr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* match image size or adjust */
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* translucent black */
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px;
  margin: 0px;
}


#ed_sqr:hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* match image size or adjust */
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* translucent black */
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px;
  margin: 0px;
  border: solid 1px #007bff;
  cursor: pointer;
}