* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #1e1e1e;
  color: white;
  font-family: "Nunito Sans";
  font-size: 16px;
  list-style-position: inside;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 875px;
  width: 100%;
  margin-top: 3.5em;
}

ul {
  text-align: left;
}

.flex-container-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-container-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

a {
  color: white;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  font-family: "Nunito Sans";
  font-size: 16px;
  color: #d200ff;
  text-decoration: underline;
  cursor: pointer;
}

button:hover {
  color: #a7ff00;
}

.fa-youtube:hover {
  color: #ff0000;
}

.fa-facebook:hover {
  color: #4267b2;
}

.fa-instagram:hover {
  color: #c13584;
  background: -webkit-linear-gradient(
    #405de6,
    #5b51d8,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d,
    #f56040,
    #f77737,
    #fcaf45,
    #ffdc80
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-twitter:hover {
  color: #1da1f2;
}

.fa-patreon:hover {
  color: #f96854;
}

.fa-paypal:hover {
  color: #0079c1;
}

.fa-mug-saucer:hover {
  color: #13c3ff;
}

.fa-heart:hover {
  color: #f70058;
}

.fa-bitcoin {
  color: white;
}

.fa-bitcoin:hover {
  color: #f2a900;
}

.fa-store:hover {
  color: #d200ff;
}

.bigtext {
  padding: 1em;
  font-size: 2em;
  font-weight: bold;
  max-width: 800px;
  text-align: center;
}

.smalltext {
  padding: 2em;
  font-size: 1em;
  text-align: justify;
  max-width: 800px;
}

.smalltext a {
  color: #d200ff;
  text-decoration: underline;
}

.smalltext a:hover {
  color: #a7ff00;
}

html {
  scroll-behavior: smooth;
}

.box,
.box1,
.box2 {
  display: block;
  border-radius: 15px;
  padding: 1em;
  font-size: 1.4em;
}

.box:hover,
.box1:hover,
.box2:hover {
  background-color: grey;
  background-blend-mode: lighten;
}

.box1 {
  background-color: #d200ff;
  color: white;
}

.box2 {
  background-color: #a7ff00;
  color: black;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  width: 100%;
  background-color: black;
  padding: 1em;
}

.topnav {
  width: 100%;
  background-color: black;
  padding: 1.4em;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: scroll;
  -webkit-animation-name: fadein;
  -webkit-animation-duration: 0.5s;
  animation-name: fadein;
  animation-duration: 0.5s;
}

.modal-container {
  background-color: white;
  border-radius: 15px;
  margin: 2em;
  color: black;
}

.bitcoin-address-qr-code {
  padding-top: 2em;
  max-width: 300px;
  width: 100%;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*# sourceMappingURL=main.css.map */
