/*! Top Navigation Style */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.topnav {
  overflow: hidden;
  background-color: #f2f2f2;
}

.topnav a {
  float: center;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
}

.topnav a:hover {
  background-color: gray;
  color: black;
}

.topnav .active {
  background-color: #4CAF50;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: center;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: center;
    display: block;
    text-align: center;
  }
}
/*! End Top Navigation Style */

/*! Button Style */
.button {
  background-color: transparent; /* transparent */
  border-radius: 4px;
  color: #4d4d99;
  text-align: center;
  text-decoration: none;
  display: flex;
  margin: auto;
  font-size: 26px;
  cursor: pointer;
  float: right;
  width: 12em;
  height: auto;
  justify-content: center
}
.button:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
@media (max-width: 767px) {
  .button {
    display: block;
    width: auto;
  }
}
/*! End Button Style */