html {
  overflow-y: scroll;
  overflow-x: hidden;
}

.masthead {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

p {
  font-family: 'Lato', 'sans-serif';
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

h1 {
  font-family: 'Lato', 'sans-serif';
  font-size: 3rem;
  margin-bottom: 2rem;
}

h2 {
  font-family: 'Lato', 'sans-serif';
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-family: 'Lato', 'sans-serif';
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

a {
  color: white;
}

a:hover {
  color: white;
}

.masthead p {
  font-size: 1.5rem;
  text-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
}

.logo {
  filter: drop-shadow(0rem 0.25rem 0.5rem rgba(0, 0, 0, 0.5));
  margin-bottom: 2rem;
}

@media (min-width: 1200px) {
  .masthead {
    height: 100vh;
    padding: 0;
  }
  .masthead p {
    max-width: 128rem;
    font-size: 1.75rem;
  }
}

.btn {
  border-radius: 1rem;
  font-family: 'Lato', 'sans-serif';
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 24px;
  text-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
}

.btn.disabled {
  color: white;
}

.btn-xl.btn-xl {
  font-size: 1.375rem;
  padding: 16px 48px;
}

.btn-outline {
  color: white;
  border: 3px solid white;
  background-color: rgba(0, 0, 0, 0.25);
}

.btn-outline.btn-xl {
  border: 4px solid;
}

.btn-patreon {
  animation: blinker 2s ease-in-out infinite;
}

@keyframes blinker {
  50% {
    border-color: #E1AB4C;
  }
}

.btn-outline:hover, .btn-outline:focus {
  color: white;
  border-color: #F46BDA;
  background-color: #F46BDA;
}

.btn-patreon:hover, .btn-patreon:focus {
  color: white;
  border-color: #E1AB4C;
  background-color: #E1AB4C;
}

.btn-discord:hover, .btn-discord:focus {
  color: white;
  border-color: #7289DA;
  background-color: #7289DA;
}

.btn-twitter:hover, .btn-twitter:focus {
  color: white;
  border-color: #1DA1F3;
  background-color: #1DA1F3;
}

.btn-outline:active {
  color: #F46BDA;
  border-color: #F46BDA;
  background-color: transparent;
}

.btn-patreon:active {
  color: #E1AB4C;
  border-color: #E1AB4C;
  background-color: transparent;
}

.btn-discord:active {
  color: #7289DA;
  border-color: #7289DA;
  background-color: transparent;
}

.btn-twitter:active {
  color: #1DA1F3;
  border-color: #1DA1F3;
  background-color: transparent;
}

body {
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.0625em;
}

footer {
  padding: 2rem 0 1.5rem 0;
  background: rgba(0, 0, 0, 0.5);
}

.bgimage {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url("../img/background.jpg");
  background-repeat:no-repeat;
  background-size:cover;
  background-color: #200A2A;
  z-index:-99999;
}