/* Style the tab */
.tab {
    float: left;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    width: 20%;
    height: 500px;
    overflow: auto;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 10px 10px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
  }
  
  /* Style the tab content */
  .tabcontent {
    width: 100%;
    height: 1500px;
    display: none;
  }

  .tabcontent-default {
    width: 100%;
    height: 1500px;
  }
  


.topContainer {
  background-image: linear-gradient(rgb(115,198,240), rgb(115,198,240));
   /* background-position: center; 
  background-repeat: no-repeat;
  background-size: cover; */
  height: 100px; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10%;
  text-align: center;
}

.dividerContainer {
  background-image: linear-gradient(rgba(115, 198, 240, 0.695), rgb(255, 255, 255)), url("/image/landingImg.jpg");
   background-position: center; 
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px; 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10%;
}

/* Display the columns below each other instead of side by side on small screens */
@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }

}

@media (max-width: 1100px) {
    
  .topContainer {
      flex-direction: column;
      align-items: flex-start;
  }

  .topContainer h2 {
    font-size: 17px;
    text-align: center;
  }

  #dropbtn {
   
    padding: 5px;
    font-size: 12px;
 
  }
 
}

/* Dropdown Button */
#dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 9px 25px;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  margin-left: 20px;
}

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

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 250px;
  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;
  font-family: "Montserrat", sans-serif;
}

/* 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;}