header {
  height: 130px;
}
header .ud h1 {
  padding: 0;
  background-color: black;
  text-align: center;
  margin: 0;
  color: red;
  font-size: 25px;
}

.header_main {
  align-items: center;
  background-color: rgb(68, 68, 68);
  color: rgb(105, 101, 101);
  position: sticky;
  top: 0px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
  z-index: 1;
  box-shadow: 0px 0px 10px black;
  box-sizing: border-box;
}
.header_main img {
  width: 32px;
  height: 32px;
}

header h2 {
  margin: 0px;
  font-size: 40px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: rgb(255, 255, 255);
}

header nav {
  height: 55px;
  background-color: black;
  border-radius: 500px;
  padding: 0px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.dropdown {
  display: inline-block;
  position: relative;
  padding: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  border-radius: 27.5px;
  margin-top: 20px;
  transform: translateX(-23%);
  padding: 15px 10px;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}

.dropdown-content3, .dropdown-content4, .dropdown-content5 {
  display: none;
}

.dropdown-content a {
  background-color: rgb(66, 66, 66);
  border: 2px solid white;
  color: white;
  border-radius: 500px;
  padding: 5px 10px;
  text-decoration: none;
}

.dropdown-content a:hover {
  color: blue;
  border-color: blue;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdowno:hover .dropdown {
  border-bottom: 20px solid;
  margin-top: 20px;
  border-color: transparent;
}

header nav button {
  background-color: #3a6afe;
  border: none;
  color: white;
  border-radius: 500px;
  padding: 5px 10px;
}

.no-wrap {
  white-space: nowrap;
}

header nav button:hover {
  color: blue;
  border-color: blue;
}

footer div a {
  color: #babbbc;
  text-decoration-line: none;
}

footer div a:hover {
  color: lightgray;
}

footer button:hover {
  background-color: white;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  background-color: #242834;
  position: absolute;
  bottom: 0;
  width: 100%;
}
footer div {
  padding: 0;
  margin: 0;
  color: white;
}

.Menu {
  display: flex;
  justify-content: center;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .header_main {
    flex-direction: column;
  }
  .button-container {
    order: 3;
  }
}/*# sourceMappingURL=headerfooter.css.map */