#goal a {
  display: flex;
  justify-content: flex-start;
}
.goalContainer {
  width: 100%;
  background-color: #052D49;
  height: 16.5px;
  border-top: 2px solid #052D49;
  border-bottom: 2px solid #052D49;
}
.percentageBar {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.goalContainer div div {
  font-weight: bold;
  color: #F96854;
  font-size: 12px;
}

.patreon {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F96854;
  box-sizing: border-box;
  padding: 6px 6px 2px 6px;
  transition: border .2s;
  border-bottom: 4px solid #F96854;
  height: 50px;
}

a:hover > .patreon {
  border-bottom: 4px solid #052D49;
}

.patreon-row {
  height: 50%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.patreon-brand {
  background-image: url('../images/become_a_patron_button.png');
  background-size: 130px;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.patreon-uppercase {
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  font-size: 10px;
  margin: 0;
  padding: 10px;
}

#goal {
  width: 100%;
}

a.patreonLink {
  display: inline-block;
  padding: 0;
  height: auto;
  margin-left: 30px;
}

a.patreonLink:hover {
  text-decoration: none;
}

