.link-navi{
  border-width:7px;
  border-style:solid;
  border-image: url("https://i.imgur.com/ROjUrNz.gif") 6 fill round;   
   display: flex; 
    justify-content: center; 
  margin: auto;
  width: 900px;
  height: 199px;
  position: relative;
  padding: 5px;
  z-index: 4;
}
.inner-image{
  border-width: 1px;
  border-style: solid;
  border-color: white;
   border-radius: 15px;
  background-image: url('images/♡ (2).jpg');
  background-repeat: repeat;
   display: flex; 
  justify-content: center; 
  width: 900px;
  padding:5px;
  position: relative;
  margin:auto;
  height: 199px;
  box-shadow: 0 0 8px 8px white inset;
  z-index: 4;
  }
  .dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

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

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

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}