@import "navbar.css";
@import "footer.css";

html {
    scroll-behavior: smooth;
}

body::after {
    content: '';
    background-image: url("https://cdn.slothgaming.de/images/backgrounds/MicroHIDAttack.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.85;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
}

body {
  padding: 0px;
}

a {
  color: white;
  text-decoration: none;
  font-family: arial, sans-serif;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6, p, span {
  color: white;
}

.main-content {
  text-align: center;
  padding: 16px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 3.5rem;
  min-height: 80vh;
}

.buttons-div {
  text-align: center;
}

.button {
  border: none;
  border-radius: 5px;
  padding: 1em 2em;
  font-size: 18px;
  cursor: pointer;
}

.button.discord-button {
  background-color: #7289da;
}

.button.discord-button, .button.feature-button {
  color: white;
  margin: 1em;
  width: 305px;
}

.button.discord-button:hover {
  background-color: #5E77D4;
}

.button.feature-button {
  background-color: black;
}

.button i {
  font-size: 28px;
}

/* Back to Top */

.back-to-top {
    font-size: 2.5em;
    position: fixed;
    bottom:10px;
    right:10px;
    z-index: 100;
	color: lightgray;
}

.back-to-top:hover {
    color: white;
}

@media only screen and (min-width: 992px) {
  .back-to-top {
    bottom:20px;
    right:20px;
    padding:1em;
  }
}
