/* Base CSS File */
/* Restart, 2024 */

/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/* General HTML */

html {
    background-color: var(--bg);
    color: var(--text);
}

body {
    margin: 0px;
}

main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
    margin: 0px;
    padding: 0px;
    min-height: calc(100vh - 132px);
}

/* Text */

h1, h2, h3, p, a, button {
    font-optical-sizing: auto;
    margin: 0px;
    font-family: "Figtree", sans-serif;
    font-style: normal;
}

h1 {
    font-weight: 700;
    color: var(--h1);
}

h2 {
    font-weight: 600;
}

h3 {
    font-size: 15px;
    font-weight: 550;
}

p {
    font-weight: 500;
}

a {
    font-weight: 500;
    color: currentColor;
    text-decoration: none;
}

a {
    transition: color 0.2s;
    color: var(--a);
    width: fit-content;
}

a:hover {
    color: var(--a-hover);
}

/* Footer */

footer {
    display: flex;
    align-items: center;

    padding: 20px;
    background-color: var(--header);
}

footer h2 {
    font-size: 18px;
}

footer p {
    font-size: 15px;
}

.footerRight {
    margin-left: auto;
}

.footerLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    footer {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footerRight {
        margin-left: 0px;
    }
}

/* Cards */

.infoCard {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background-color: var(--button);
    border: 2px solid var(--button-border);
    border-radius: 15px;
}

.infoCard:hover {
    background-color: var(--button) !important;
}

.infoCard h1, .infoCard h2, .infoCard h3, .infoCard p {
    color: var(--text) !important;
}

/* Buttons */

.aButton {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: fit-content;
    height: 32px;
    padding-right: 15px;
    padding-left: 15px;
    transition: background-color 0.2s;
    background-color: var(--button) !important;
    cursor: pointer;
    border: 2px solid var(--button-border);
    border-radius: 17.5px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text) !important;
    text-align: center;
}

.aButton:hover {
    background-color: var(--button-hover) !important;;
}

.dashButton {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) ;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 300px;
    height: 40px;
    transition: background-color 0.2s;
    background-color: var(--button);
    border: 2px solid var(--button-border);
    border-radius: 25px;
    color: var(--text) !important;
}

.dashButton:hover {
    background-color: var(--button-hover);
}

.dangerButton:hover {
    background-color: var(--error) !important;
}

.discordButton {
    background-color: #5865F2 !important;
    color: white !important;
}

.discordButton:hover {
    background-color: #737fff !important;
}

.discordButton p {
    color: white !important;
}

