html {
  scroll-behavior: smooth;
}

body {
    text-align: left;
    /* Centers the page content container in IE 5 browsers. */
    font-family: Arial, Helvetica, sans-serif;
    overflow-y: scroll;
    overflow-x: scroll;
}

article {
    text-align: justify;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    background-color: white;
    padding: 1em 3em 3em 3em;
    font-size: 1em;
    width: 90%;
    margin: 0 auto 0 auto;
    box-shadow: 1px 1px 5px #555;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

/* THE PAGE HEADER BAR AND MENU */
#pageHeader {
    margin: auto;
    width: 90%;
    height: auto;
    font-size: 3em;
    color: blue;
    padding: 0 5px 10px 5px;
    border-radius: 20px;
}

/* NAVIGATION */
#menubar {
    width: 90%;
    margin: auto;
}

.navbtn {
    text-decoration: none;
    display: inline-block;
    #background-color: grey;
    color: white;
    padding: 1px 10px 1px 10px;
    font-size: 1em;
    font-weight: bold;
}

.dropdown {
    position: relative;
    display: inline-block;
    #background-color: grey;
    padding: 1px 10px 1px 10px;
    font-size: 1em;
    font-weight: bold;
    text-align: left;
}

.dropdown a,
.navbtn a,
.dropdown-content a {
    text-decoration: none;
    color: white;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #e1e1e1;
    min-width: inherit;
    font-style: italic;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 1px 5px 1px 5px;
    display: block;
}

.navbtn:hover,
.dropdown-content a:hover {
    background-color: #cccccc;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
    border: 1px white solid;
}

.dropdown:hover,
.dropbtn {
    background-color: #cccccc;
}
/*
.link-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f0f0f0;
  }
  .link-bar a {
    text-decoration: none;
    color: #cc6900;
    #font-weight: bold;
  }
*/
/* Navigation Button Bar */

  .button-bar {
    display: flex;
    justify-content: space-between;
    #padding: 10px;
    background-color: white;
  }
  .button-bar button {
    padding: 3px 7px;
    border: none;
    border-radius: 5px;
    #background-color: #0077cc;
    #background-color: grey;
    color: white;
    font-weight: bold;
    cursor: pointer;
    #transition: background-color 0.3s ease;
  }
  .button-bar button:hover {
    background-color: #005fa3;
  }

  .spacer {
    visibility: hidden; /* It's there, but like a stealthy ninja */
    pointer-events: none; /* Can't interact with it */
  }

.navbtn, .dropdown, .button-bar button{
  background-color: rgb(117, 117, 5);
}

.header {
    width:90%;
    display: flex;
    justify-content: space-between; /* Push items to opposite ends */
    align-items: center;            /* Vertically align in the middle */
    padding: 1em;
  }

  .title {
    font-size: 3em;
    color:blue;
  }

  .flag {
    width: auto;
    height: 2.5em;
  }



