body{
    font-family: Roboto, Arial;
    background-color: rgb(223, 137, 17);
    margin:0;
    height: 1200px;
    padding-top: 120px;
    padding-bottom: 3px;


  }
  .resume-page{
    background-color: white;
    padding: 0px;
    margin-top: 10;
  }
  .search-button .tooltip,
.logo-button .tooltip,
.project-buttons .tooltip,
.Header-page-button .tooltip,
.Footer-page-button .tooltip {
  position: absolute;
  background-color: gray;
  color: white;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 4px;
  border-radius: 2px;
  font-size: 12px;
  bottom: -30px;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
  white-space: nowrap;
}
.search-button:hover .tooltip,
.logo-button:hover .tooltip,
.project-buttons:hover .tooltip,
.Header-page-button:hover .tooltip,
.Footer-page-button:hover .tooltip {
  opacity: 1;
}
 /* Dropdown Button */
 .dropbtn {
  background-color:rgb(223, 137, 17);
  color:white;
  font-size: 14px;
  border:none;
  border-radius:18px;
  cursor:pointer;
  padding: 12px 12px;
  margin-bottom:8px;
  transition: opacity 0.15s;
  vertical-align: top;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  border-radius:10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

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

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: rgb(238, 209, 167);
  border-radius:10px;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {opacity: 0.7;
  text-decoration:underline;} 