
body {
  background-color: white;
  color: black;
   font-family: 'Nunito', sans-serif;
}
.container {
  display: flex;
  column-gap: 10px;
}

  .box-1 {
  height: 500px;
  width: 600px;
  background-color:#a3e0f7;
  text-align: center;
}

  .box-2 {
  height: 500px;
  width: 600px;
  background-color: orange;
  text-align: center;
}

.dropdown{
  display: inline-block;
  text-align: center;
}
.dropdown button{
  background-color:white;
  color: black;
  padding: 10px 15px;
  border-style:solid;
  border-color: black;
   cursor: pointer;
}
.dropdown a{
  display: block;
  color: black;
  text-decoration: none;
  padding: 10px 15px;
}
.dropdown .content{
  display: none;
  background-color: hsl(0, 0%,95%);
  min-width: 100px;
  box-shadow: 2px 2px 5px black;
  }
  .dropdown:hover .content {
    display: block;
    }
    .dropdown:hover button{
      background-color:black;
      }
    .dropdown a:hover{
      background-color:orange;
    }
    .dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color:white;
}

#myInput {
  box-sizing: border-box;
  background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
}

#myInput:focus {outline: 3px solid #ddd;}

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

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}
      #containers {
                max-width: 900px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */
            }
             /* the area below is for all links on your page
    EXCEPT for the navigation */
            #containers a {
                color:black;
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }
                       #header {
                width: 100%;
                background-color: #ffffff;
                /* header color here! */
                height: 300px;
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
                background-image: var(--header-image);
                background-size: 100%;
            }

            /* navigation section!! */
            .logo img {
              height:70px; 
              width:auto;
            }
            
            #navbar {
              display: flex;
              justify-content:flex-start;
              align-items: left;
                background-color: #f88a18;
                padding:10px 10px;
                /*navbar color */
                width:auto;
            }

            #navbar ul {
                padding: 0px;
                margin: 0px;
              display:flex;
                list-style-type: none;
                align-items:center;
            }

            #navbar li {
                padding-top: 0px;
            }

            /* navigation links*/
            #navbar li a {
              margin-left:30px;
                color: #ffffff;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }
