body {
  background-color: white;
  color: black;
   font-family: 'Nunito', sans-serif;
}
.container {
  position:relative;
  display: flex;
  flex-wrap: wrap;
justify-content: center;
  column-gap: 20px;
}

  .box-1 {
    border-style: solid;
    color:black;
  width: 500px;
  background-color: #a3e0f7;
  text-align:center;
}
  .box-2 {
    position:rela tive;
    border-style:solid;
    color:black;
  height: 500px;
  width: 500px;
  background-color: orange;
    display:fl ex;
    float:rig ht;
  justify-content:center ;
  align-items:center;
  text-align: center;
}
.box-3 {
  width: 500px;
  border-style: solid;
  color:black;
  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;
  position:absolute;
  background-color: hsl(0, 0%,95%);
  min-width: 130px;
  box-shadow: 2px 2px 5px black;
  }
  .dropdown:hover .content {
    display: block;
    }
    .dropdown:hover .dropbtn{
      background-color:black;
      }
    .dropdown a:hover{
      background-color:orange;
    }
    .dropbtn{
      background-color:#04AA6D;
      color:white;
      padding:16px;
      font-size:16px;
      border:black;
      cursor:pointer;
    }
    .dropbtn:hover, .dropbtn:focus {
  background-color:white;
}
.signs {
  column-count: 3;
  border-style: solid;
  border-radius: 3px;
  border-color: #0b3e7d;
  margin:10px;
  padding:15px;
  background-color:#ffbd61;
}
      #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;
            }

            .wrapper {
              position:relative;
              padding: 0 15px;
              display: flex;
              flex-wrap:wrap;
              align-items:center;
              justify-content:center;
            }
            .intro {
            text-align:left;
            }
            
