#myInput {
  background-color: #fe7362;
  color: #32c4f9;
  }
  
  #myUL {
    overflow: hidden;
    background-color: #f3ce73;
    width: auto;
    color: #fe7362;
}
  
  #myUL li :hover {
    background-color: #2decb7;
    width: auto;
    overflow: hidden;
    padding: 10px, 10px, 10px, 10px;
  }
  
  * {
    box-sizing: border-box;
  }
  body {
    transition: background-color 0.5s, color 0.5s;
  }
  
  body.light-mode {
    font-family: Arial;
    padding: 10px;
    background: #32c4f9;
    color: black;
  }
  
  body.dark-mode {
        font-family: Arial;
    padding: 10px;
    background-color: black;
    color: white;
  }
/* style the header */
.header{
  background-color: #fe7362;
  padding: 20px;
  text-align: center;
}
/* style the top nav */
.topnav{
  overflow: hidden;
  background-color: #f3ce73;
}

/* style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #fe7362;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* change color on hover */
.topnav a:hover {
  background-color: #32c4f9;
  color: #fe7362;
}
.floter{
  background-color: #fe7362;
  padding: 20px;
  text-align: center;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f3ce73;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: #fe7362;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #2decb7;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: #fe7362;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #32c4f9;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f3ce73;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: #fe7362;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #2decb7;
}

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