/* Section*/
 .section {
    height: 350px;
    padding: 40px;
    display: block;
  }

/* Dropdown Button */
.dropbtn1 {
  /*background-color: #3498DB;*/
  color: white;
  padding: 16px;
  font-size: 24px;
  border: none;
  cursor: pointer;
  width: 130%;
  height: 120%;
  /*background-color: #DAF5F4;*/
  background-color: #808000;

}

/* Dropdown Button */
.dropbtn {
  /*background-color: #3498DB;*/
  color: black;
  padding: 16px;
  font-size: 24px;
  border: none;
  cursor: pointer;
  width: 130%;
  height: 120%;
  background-color: #9BC2C9;
  /*background-color: #808000; #DAE3F3*/
  /*background-color: #DAE3F3;*/
}



/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  /*background-color: #2980B9;*/
  background-color: #9BC2C9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  width: 13%;
  height: 150px;
  margin-left: 2%;
  margin-right: 2%;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #9BC2C9;
  /*background-color: #f1f1f1; */
  min-width: 160px;
  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;
  font-size: 20px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

/* Round buttons */

.button {
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.button1 {border-radius: 2px;}
.button2 {border-radius: 4px;}
.button3 {border-radius: 8px;}
.button4 {border-radius: 12px;}
.button5 {border-radius: 60%;}
.button {border-radius: 30px;}

/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 150%;
  background-color: #808000;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  /*bottom: 125%; */
  bottom: -125%;
  left: 50%;
  margin-left: -80px;
  font-size: 16px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

