html {
    font-family: "DynaPuff";
    color: azure;

    height: 100%;
}

body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    margin: 0;

    background: linear-gradient(0deg, #7d6cd8, #3c83f6);
    background-attachment: fixed;
}

main {
    flex: 1;
}

nav {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 20px;

    position: sticky;
    top: 0;

    background-color: rgba(20, 30, 60, 0.5);
    backdrop-filter: blur(10px);

    padding: 15px 30px;

    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}

nav a {
    font-weight: bold;
}

nav a:hover {
    transform: scale(1.03);
}

nav span {
    height: 20px;
    width: 2px;
    background: rgba(255, 255, 255, 0.4);
}

a {
    display: inline-block;

    text-decoration: none;

    color: rgb(155, 241, 213);
    transition: 0.3s;
}

a:hover {
    color: rgb(208, 253, 238);
}

h1,
h2,
h3 {
    font-weight: bold;
}

.disabled {
    pointer-events: none;

    opacity: 0.5;

    cursor: not-allowed;
}

.emoji {
    width: 2em;
    height: 2em;

    vertical-align: middle;
}

@font-face {
    font-family: HeyComic;
    src: url(/assets/fonts/Hey\ Comic.woff2)
}

@font-face {
    font-family: "DynaPuff";
    src: url(/assets/fonts/DynaPuff/DynaPuff\ Medium.woff2);
    font-weight: 400;
}

@font-face {
    font-family: "DynaPuff";
    src: url(/assets/fonts/DynaPuff/DynaPuff\ Bold.woff2);
    font-weight: 700;
}