a:hover {
  color: #FF3434;
}

h1 {
  color: #fff79a;
  font: center;
  font-size:4.0vw;
  text-shadow: 6px 6px black;
 }

/*backgroung image*/
html {
  box-sizing: border-box;
  background: url('bridge3.jpg') fixed center;
  background-size: cover;
}

/*button informatiom*/
.styled {
  float: center;
  border: 0;
  display: flex;
    line-height: 1.5;
    padding: 0 5px;
    font-size: 1.8rem;
    grid-auto-flow: auto;
    border-right-width: 20px;
    text-align: center;
    margin: 5px;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 10px;
    background-color: #fff79a;
    background-image: linear-gradient(to top left,
                                      rgba(0, 0, 0, .2),
                                      rgba(0, 0, 0, .2) 30%,
                                      rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
                inset -2px -2px 3px rgba(0, 0, 0, .6);
}

div.container {
    height: 150px;
    display: flex;
    align-items:inline-grid;
    justify-content: center;
    position: center;
}

div.container1 {
    height: 40px;
    display: flex;
    align-items: inline-grid;
    justify-content: center;
    position: center;
}

 /** code by webdevtrick ( https://webdevtrick.com ) **/
body {
  margin: 0;
  padding: 0;
}
* {
  font-family: 'sans-serif';
}
.nav-bar {
  height: 70px;
}
.brand {
  position: absolute;
  padding-left: 20px;
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
}
.brand a img {
  max-height: 70px;
}
.brand a,
.brand a:visited {
  color: #fff79a;
  text-decoration: none;
}
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
}
nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 20px;
  line-height: 70px;
  background: #fff79a;
  color: black;
  font-size: 20px;
  text-decoration: none;
}
nav ul li a:hover,
nav ul li a:visited:hover {
  background: #e9533a;
  color: #e9533a;
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}
.nav-mobile {
  display: none;
  position: absolute;
  top: 50px;
  right: 0;
  height: 70px;
  width: 70px;
}
@media only screen and (max-width: 798px) {
  .nav-mobile {
    display: block;
  }
  nav {
    width: 100%;
    padding: 70px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  padding-left: 25%;
  }
  nav ul li ul li a {
    padding-left: 30%;
  }
  .brand a img {
    max-height: 60px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 799px) {
  .nav-list {
    display: block !important;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #ffffff;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}
@media only screen and (max-width:500px) {
  /* For mobile phones: */
  .column, .container, .box {
    width: 100%;
    margin: auto;  
    display: block;
    margin-bottom: -90px;
    font-size-adjust: 4.50vw;
    font-family: 'sans-serif';
  }