/* this is the styling for the about us section of the website */
.meet {
	width:100%;
	text-align:center;
	justify-content:center;
	margin-top:-50px;
}

/* this is the style for sign in on the menu */
.meet button {
  background:#000;
  padding:10px;
  border-radius:10px;
  box-shadow: inset 0 0 0 50px transparent;
  transition:1.1s;
  border-right:5px solid dodgerblue;
  border-left:5px solid dodgerblue;
  text-align:center;
  outline:none;
  border-top:none;
  border-bottom:none;

}
.meet a {
  font-size:17px;
  text-align:center;
  font-family:swis721 blk bt;
  text-decoration:none;
  color:#fff;
  text-transform:uppercase;
}
.meet button:hover {
  color:lightblue;
  box-shadow: inset 0 0 0 0 dodgerblue;
}
.meet a:hover {
  color:dodgerblue;
  box-shadow: inset 0 0 0 0 dodgerblue;
}