html {
background-image:url(1.webp);
}
 
body {
    min-height: 100vh;
    max-width: 1280px;
    margin: auto;
    margin-top: 20;
}

.Table2 {
  background-color: transparent;
  margin: 20px auto;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0px 0px 2px 2px rgba(199,199,199);
  background-color:#e4e8f5;
  width: 920px;
}

* {
  box-sizing: border-box;
}

.bar {
  background: rgb(192, 192, 192);
  width: 1148px;
  height: 54px;
  display: flex;
  list-style: none;
  padding: 0;
  font-family: Georgia,serif;
  font-size: 16.5px;
}

.bar li {
  height: 100%;
  border-right: 1px solid rgb(173, 173, 173);
  border-left: 1px solid rgb(173, 173, 173)
}

.bar li a {
  color: black;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 27px 27px;
  align-items: center;
  justify-content: center;
}

.bar .has-dropdown ul li a{
padding: 20px 20px;
border-top: 2px solid rgb(173, 173, 173);
}

.bar li a:hover {
  color: black;
  background-color: #80DEFF;
  width: 100%;
  padding: 27px 27px;
}

.dropdown {
  background: rgba(192, 192, 192, 1);
  padding: 0;
  list-style: none;
  display: none;
}

.bar li.has-dropdown:hover .dropdown {
  display: inline-block;
  position: relative;
}
