/* *************** GLOBAL *************** */

html {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 80px;
  font-family: franklin-gothic-urw;
  font-weight: lighter;
}

h2 {
  font-size: 20px;
  font-family: minion-pro;
}

.center {
  text-align: center;
}

.donate-text {
  margin-bottom: 10px;
}

/* *************** BLINKING *************** */

.blinking {
  -webkit-animation: 3s blink ease infinite;
  -moz-animation: 3s blink ease infinite;
  -ms-animation: 3s blink ease infinite;
  -o-animation: 3s blink ease infinite;
  animation: 3s blink ease infinite;
}

@keyframes "blink" {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes "blink" {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-ms-keyframes "blink" {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-o-keyframes "blink" {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* *************** FONTS *************** */

.nav,
.date,
.time,
.register,
.intro {
  font-family: franklin-gothic-urw;
}

.title,
.description {
  font-family: minion-pro;
}

/* *************** NAV *************** */
.navbar-brand {
  font-size: 15px;
}

/* *************** EVENTS *************** */

.events {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  min-width: 75vw;
  max-width: 650px;
}

.event {
  width: 40vw;
  min-width: 320px;
  background-color: #eeeeee;
  margin: 20px 0 20px 0;
}

.media img {
  width: 40vw;
  min-width: 320px;
}

.details {
  padding: 20px;
}

.details div {
  padding: 10px;
}

.sponsor {
  padding: 20px 30px 20px 30px;
  background-color: #212529;
  color: #eeeeee;
}

.sponsor p {
  text-transform: uppercase;
  font-weight: bold;
  font-size: smaller;
}

.sponsor div img {
  margin: 5px;
}

.date {
  text-transform: uppercase;
  font-weight: bold;
  font-size: smaller;
}

.title {
  font-weight: bold;
  font-size: x-large;
}

.description {
  font-size: medium;
}

.time {
  font-weight: bold;
  font-size: smaller;
}

.register a {
  background-color: black;
  padding: 5px 30px 5px 30px;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  font-size: smaller;
}

/**************************************************************
 *  FOOTER
 *************************************************************/

.footer {
  background-color: #000;
  color: #fff;
  padding: 100px 50px 100px 50px;
  margin-top: 5rem;
}

.footer--row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
}

.footer--logo {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.footer--row img {
  height: 200px;
  padding-left: 35px;
  padding-right: 35px;
  border-right: 1px solid #fff;
  margin-right: 50px;
}

.footer--button {
  display: flex;
  align-items: center;
  border-radius: 5px;
  background-color: #e1712f;
  padding: 10px;
  margin-right: 50px;
}

.footer--button a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.footer ul {
  list-style-type: none;
  line-height: 1.5;
  margin-right: 50px;
}

.footer ul img {
  height: 15px;
  filter: invert(100%);
  margin: 0;
  padding-left: 0px;
  padding-right: 10px;
}

.footer ul img:hover {
  filter: invert(75%);
}

.footer li a {
  font-size: 15px;
  color: #fff;
}

.footer li b a {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.footer li a:hover {
  color: #e0e0e0;
}

.footer li b a:hover {
  color: #e0e0e0;
}

.footer--break {
  display: none;
}

@media (max-width: 992px) {
  .footer--logo {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .footer--button a {
    font-size: 12px;
  }

  .footer ul {
    margin-right: 15px;
  }

  .footer li a {
    font-size: 12px;
  }

  .footer li b a {
    font-size: 12px;
  }

  .footer ul img {
    height: 12px;
  }
}

@media only screen and (max-width: 600px) {
  .footer {
    padding: 30px;
  }

  .footer ul {
    margin-right: 20px;
  }

  .footer--row img {
    height: 100px;
  }

  .footer ul {
    line-height: 1;
  }

  .footer li {
    float: left;
    margin: 5px;
  }

  .footer--break {
    display: block;
  }
}
