.logo {
  height: auto;
  width: 50px;
}

.biglogo {
  height: auto;
  width: 100px;
}

.bg-white {
  background-color: #fff
}

.social{
  font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
font-size: 32px;
line-height: 36px;
/* or 112% */
align-items: center;
text-align: center;

color: #9747FF;
}

.btn-outline-purple{
  border-color: #9747FF;
  border-radius: 25px;
}

.btn-outline-purple:hover{
  border-color: #9747FF;
  border-radius: 30px;
}

.button {
  position: relative;

  margin: 30px auto;
  padding: 0;

  overflow: hidden;

  border-width: 0;
  outline: none;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .6);

  background-color: #2ecc71;
  color: #ecf0f1;

  transition: background-color .3s;
}

.button:hover, .button:focus {
  background-color: #27ae60;
}

.button > * {
  position: relative;
}

.button span {
  display: block;
  padding: 12px 24px;
}

.shadow {
  text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000
}

.navbar-brand {
  font-family: 'League Spartan', sans-serif;
}

.button:before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  display: block;
  width: 0;
  padding-top: 0;

  border-radius: 100%;

  background-color: rgba(236, 240, 241, .3);

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.button:active:before {
  width: 120%;
  padding-top: 120%;

  transition: width .2s ease-out, padding-top .2s ease-out;
}

/* Styles, not important */
*, *:before, *:after {
  box-sizing: border-box;
}

.button.orange {
  background-color: #e67e22;
}

.button.orange:hover, .button.orange:focus {
  background-color: #d35400;
}

.button.red {
  background-color: #e74c3c;
}

.button.red:hover, .button.red:focus {
  background-color: #c0392b;
}

.text-pink{
  color: #DC189B;
}

.button-pink{
  background-color: #DC189B;
}

.text-orange{
  color: #FF6333;
}

.button-orange{
  background-color: #FF6333;
}

.text-green{
  color: #0D8536;
}

.button-green{
  background-color: #0D8536;
}

body {
  background-image: url("./assets/img/background.png");
  background-repeat: repeat-y;
  background-position: center;
  background-size: cover;
  font-family: 'Source Sans Pro';
}
