/* square buttons */
.button-container {
  display: flex;
  /*justify-content: center;*/
  align-items: center;
}
.centered-button {
    display: inline-block;
    padding: 4px 0 0 0;
  border: 1px solid black;
  background-color: white;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  outline: none;
  width: 195px;
  height: 30px;
}

.centered-button.push-left {
    margin-left: 25px;
}

.centered-button:hover {
    background-color: black;
    color: white;
}

.sr-only {
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}
