* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background-image: url("./public/background.svg");
    background-size: cover;
    background-position: center;
}

#main-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a { text-decoration: none; color: inherit; }
.logo {
    width: 320px;
    height: 320px;
    background-image: url("./public/logo.svg");
    background-size: cover;
    background-position: center;
}

.invite-link {
    color: white;
    background-color: #5865F2;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    margin-top: 32px;
    font-weight: bold;
    font-family: sans-serif;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

#discord-icon {
    width: 20px;
    height: 20px;
    background-image: url("./public/discord.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

