* {
    font-family: "Roboto", sans-serif;
}


body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 100vh;
    margin: 0px;
}

header {
    display:flex;
    flex-direction: column;
    background-image: url("images/lavender.jpg");
    background-size: 100%;
    min-height: 700px;
    min-width: 1050px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}


.title img {
    width: 95%;
    max-height: 250px;
    margin: 10px;
    min-height: 100px;
    min-width: 160px;
}

.banner {
    display:flex;
    flex: auto;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    color: white;
    padding-right: 50px;
    
  }

.banner a {
    background-color: #9d65e6;
    color: white;
    padding: 16px;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    transition-duration: 0.4s;
}

.banner h1 {
  margin:20px;
  font-size: 40px;
}

.banner h3 {
  font-size: 25px;
}

.banner a:hover {
  background-color: #793fc5;
}

.about-info {
  display: flex;
  flex: auto;
  justify-content: space-around;
  align-items: center;
  
}

.about-img img {
  max-height: 500px;
  max-width: auto;
  padding-right: 100px;
}

.about {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  padding-left: 20px;
  flex:auto;
  font-size: 18px;
}

.about h3 {
  margin:0px;
  padding-top:16px;
}

.about-para p{
  margin-bottom: 0px;
} 

.speciality {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}
footer {
    display:flex;
    flex-direction: column;
    flex: auto; 
    max-height: 150px;
    background-color: #88941c;
    color: white;
}


.footerInfo {
    display:flex;
    justify-content: center;
    flex: auto;
    gap:150px;
}

.copyright {
  display: flex;
  justify-content: center;
  background-color: #6d7713;
  padding: 10px 0px 10px 0px;
}




/* Dropdown Button */
.dropbtn {
    background-color: #88941c;
    color: white;
    padding: 16px;
    font-size: 18px;
    border: none;
    
  }

  .dropdown {
  
  }
  
.navigation {
    display:flex;
    gap: 10px; 
    margin: 10px;
    align-items: center;
    flex: none;
}

  /* The container <div> - needed to position the dropdown content */
  .button a{
    background-color: #88941c;
    color: white;
    padding: 16px;
    font-size: 18px;
    border: none;
    
  }
  

 
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    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;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}

  /* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}

a {
    color: white;
    text-decoration: none;
}


/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #a4b31f;}





