body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 80px;
  background-color: #fff;
  color: #333;
  padding: 20px;
}



/* Additional CSS styles for other elements can be added below */

#left-logo {
  width: 400px;
  height: 100px;
  margin-right: 10px;
  margin-left: -20px;
}
#right-logo {
  width: 100px;
  height: 50px;
  margin-right: 10px;
  margin-left: 0px;
}

#left-logo {
  margin-right: 10px;
}

nav {
  background-color: #0099cc;
  height: 50px;
  display: flex;
  justify-content: center;
  position:relative;
/* z-index:1; */  
  
}

ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  padding: 15px 20px;
}

li a {
  color: #fff;
  text-decoration: none;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
  
}

.dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
    position:relative;
 z-index:1;
}



h1 {
  font-size: 28px;
  margin: 0;
}

form {
  margin-top: 20;
}

.dropdown-content a {
  color: #FFF; #000;
}

.dropdown-content a:hover {
  background-color: #bfefff;
}

.dropdown-content {
  background-color: #0099cc;#bfefff;
}

h1 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 20px;
}
footer {
  background-color: #f0f0f0;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 16px;
}


.welcome-container {
  position: absolute;
  top: 0;
  right: 10px;
  height: 100%;
  display: flex;
  align-items: center;
}




