* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

nav {
  display: flex;
  width: 100%;
  background-color: #0081A7;
  height: 66px;
}

nav ul {
  list-style-type: none;
  width: 100%;
  display: flex;
  height: 100%;
  font-size: 30px;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

nav li {
  align-items: center;
  width: 250px;
  height: 45px;
  margin: 5px;
  background-color: #FDFCDC;
  color: #0081A7;
  border-radius: 15px;
  padding-top: 5px;
  position: relative; /* Add this for dropdown positioning */
}

nav li a {
  color: #0081A7;
  width: 250px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Trebuchet MS', sans-serif;
}

nav li:hover {
  align-items: center;
  width: 251px;
  height: 46px;
  background-color: #fffcc8;
  color: #0e487e;
  font-weight: 550;
  border-radius: 15px;
  margin-top: 5px;
}

#logoButton {
  margin: 5px;
  /* width:130px; */
  height: 60px;
}

/* Dropdown styles */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  margin-top: 5px;
}

.dropdown-content a {
  color: #0081A7;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  border-radius: 5px;
  font-family: 'Trebuchet MS', sans-serif;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #0e487e;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
}

.dropbtn {
  background-color: #FDFCDC;
  color: #0081A7;
  width: 250px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 30px;
}

.dropbtn:hover {
  background-color: #fffcc8;
  color: #0e487e;
  font-weight: 550;
}