.blue-rounded-button-wrapper {
  text-align: center;
  margin: 20px 0;
}

.blue-rounded-button {
  display: inline-block;
  padding: 8px 20px;
  background-color: #0D2D93;
  color: white;
  border-radius: 50px;
  border: 1px solid black;
  font-size: 1.2em;
  font-weight: normal;
  text-decoration: none;
  font-family: 'League Gothic', sans-serif;
  transition: background-color 0.3s, color 0.3s;
}

.blue-rounded-button:hover {
  background-color: #091f66;
  color: #ffffff;
}

