*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0a0a0a;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.discord-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.discord-link:hover {
    opacity: 1;
}

.discord-link:hover span {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.discord-link svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    flex-shrink: 0;
}
