@import url('https://fonts.googleapis.com/css2?family=Jua&family=Pixelify+Sans:wght@400..700&display=swap');

body {
    font-family: "Jua", sans-serif;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('img/background.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.5) blur(5px);
    z-index: -1;
}
header {
    background-color: #23272ae1;
    padding: 20px;
    align-items: center;
    position: relative;
    width: 100%;
}
header h1 {
    margin: 0;
    text-align: center;
}
.image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

nav ul {
    list-style-type: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 15px;
}
nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
}
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}
.hero {
    text-align: center;
    margin-bottom: 40px;
}
.hero h2 {
    margin-bottom: 10px;
}
.invite-btn {
    background-color: #7289DA;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-left: 10px;
    margin-right: 10px;
}
.features {
    margin-bottom: 40px;
    text-align: center;
}
.features h3 {
    margin-bottom: 10px;
    text-align: center;
}
.footer {
    background-color: #23272ae3;
    text-align: center;
    padding: 10px;
    bottom: 0;
    width: 100%;
    color: #888;
    position: relative;
}
a:hover {
    opacity: 0.8;
}
.support{
    text-align: center;
}
hr.dashed {
    margin-top: 25px;
    margin-left: 25px;
    border-top: 3px dashed #bbb;
  }

.scrolling-text {
    background-color: #000000c4;
    padding: 20px;
    align-items: center;
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
    font-size: 16px;
    color: #fff;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
