@import url('./animation.css');
@import url('./fonts.css');

:root {
    --e7t-font-family: 'JetBrains Mono Nerd Font', monospace;
    --e7t-font-size: 20px;
    --e7t-color: #ffffff;
}

html,
body {
    margin: 0;
}

body {
    background: url('../img/background.png'), linear-gradient(45deg,
            #296f97,
            #bb00ff), linear-gradient(45deg,
            #2b2b2b,
            #404125);
    background-blend-mode: multiply;
    background-attachment: fixed;
    animation: body-hue 6s linear infinite;
    font-family: var(--e7t-font-family);
    font-size: var(--e7t-font-size);
    color: var(--e7t-color);
}

.nobg {
    background: #000000;
    animation: none;
}

main {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

main * {
    animation: fadeIn 1s ease-in-out;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 5px;
    margin-bottom: 5px;
}

.glass {
    border: 1px solid #ffffff09;
    border-radius: 7px;
    background: #ffffff0c;
    backdrop-filter: blur(3px);
    transition: all 0.1s;
}

@media (hover: hover) {
    .glass.ui-animated:hover {
        border: 1px solid #ffffff4f;
        background: #ffffff1f;
        backdrop-filter: blur(6px);
    }
}

.glass.ui-animated:active {
    border: 1px solid #ffffff4f;
    background: #ffffff1f;
    backdrop-filter: blur(6px);
    transform: scale(0.99);
}

.ui-box {
    padding: 15px;
    margin: 15px;
}

.ui-text-centered {
    text-align: center;
}

.ui-text-site-header-title {
    animation: text-glow 6s linear infinite;
    font-size: 30px;
    font-weight: 800;
}

.ui-text-site-header-subtitle {
    font-size: 16px;
}

.ui-button {
    padding: 8px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.ui-button-list {
    display: flex;
    flex-direction: column;
}

.ui-text-header-title {
    font-size: 23px;
    font-weight: 800;
}

.ui-text-header-subtitle {
    font-size: 16px;
}

.ui-text-hidden {
    color: #ffffff00;
}

.ui-margin-small * {
    margin-bottom: 3px;
}

.ui-badgelist img {
    width: 88px;
    height: 31px;
    transition: all 0.1s;
}

.ui-badgelist img:hover {
    box-shadow: 0 0 12px #ffffff33;
}

.ui-badgelist p {
    margin: 5px;
}

.ui-text-white {
    color: #ffffff;
}

.ui-text-red {
    color: #ff9e9e;
}

.ui-text-yellow {
    color: #fff59e;
}

.ui-text-green {
    color: #9effb6;
}

.ui-text-cyan {
    color: #68ffd2;
}

.ui-text-blue {
    color: #a89eff;
}