.entry-form {
    padding: 0rem var(--padding) 0rem var(--padding);
    margin-left: 12.5rem;
    margin-right: 12.5rem;
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: center;

    .buttons {
        display: inline-flex;
        position: relative;
        width: 100%;

        button {
            width: 15%;
        }
    }
}

.site-header {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;

    padding: 0rem var(--padding) 0rem var(--padding);

    height: 64px;
    flex: 0 0 auto;

    background: #000121;
    color: white;

    .logo {
        font-weight: bolder;
        font-size: 1.2rem;
    }

    .logo:hover {
        background: none !important;
    }

    a:not([role="button"]) {
        text-decoration: none;
        color: white;
        display: flex;
        align-items: center;
        height: 100%;
    }

    a:not([role="button"]):hover {
        background: #4f5891;
    }

    a[role="button"] {
        width: initial;
        align-self: center;
        padding: 12px;
    }
}

.nav-right {
    display: flex;
    height: 100%;
    gap: 12px;

    a {
        padding: 0rem 1.25rem 0px 1.25rem;
    }
}

main {
    flex: 1;
    padding: 3rem var(--padding) 3rem var(--padding);
}

footer {
    background: #012c77;
    color: #fff;
    font-size: 0.75rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0.35rem;
}

.user-menu {
    display: flex;
    align-items: center;
    user-select: none;

    .user-menu__trigger {
        cursor: pointer;
        width: 2.55rem;

        img {
            display: block;
            aspect-ratio: 1 / 1;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 2rem;
            border-style: solid;
            border-width: 4px;
        }
    }

    .user-menu__content {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        min-width: 260px;
        overflow: auto;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        z-index: 1;
        right: var(--padding);
        top: 64px;
        color: initial;

        section {
            display: flex;
            padding: 16px;
            width: 330px;
            gap: 12px;
            align-items: center;
        }

        section p {
            margin: 0px 0px 4px 0px;
            font-size: 1.25rem;
            font-weight: bold;
        }

        hr {
            margin: 0px;
        }

        ul {
            list-style: none;
            margin: 0px;
            padding: 0px;
        }

        ul a {
            color: initial;
            text-align: initial;
            background: none;
            border: none;
            border-radius: 0px;
            width: 100%;
            text-decoration: none;
            display: block;
            padding: 8px 16px 8px 16px;
        }

        ul a:hover {
            background: gray;
        }
    }
}

.avatar-circle {
    width: 6rem;
}

.avatar-circle img {
    display: block;
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 99rem;
    border-style: solid;
    border-width: 4px;
}


.global-annote-count {
    text-align: center;
    padding: 1.25rem;
    background: #fbe49a;
    position: relative;

    p {
        font-size: small;
        text-transform: uppercase;
        font-weight: bold;
        margin: 0px 0px 4px 0px;
        z-index: 100;
        position: relative;
    }

    h1 {
        font-size: 3.25rem;
        line-height: 52px;
        margin: 0px;
        position: relative;
        z-index: 100;
    }

    div {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 5rem;
        color: #f87f7f;
        ;
        opacity: 36.2%;
    }
}

.project-list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.project-card {
    box-shadow: 8px 8px #05153ba8;
    color: #000;
    display: flex;
    flex-flow: column;
    text-decoration: none;
    border: 2px solid black;
    user-select: none;
    grid-column: span 4;

    .project-card__thumbnail {
        display: block;
        position: relative;
        width: 100%;
    }

    .project-card__thumbnail img {
        display: block;
        aspect-ratio: 16 / 9;
        width: 100%;
    }

    .project-card__thumbnail .duration {
        display: block;
        position: absolute;
        right: 0px;
        bottom: 0px;

        padding: 0.24rem 0.4rem;
        font-size: 0.85rem;
        color: white;
        background: #010917;
        text-align: right;
    }

    .project-card__thumbnail .description {
        display: none;
    }

    .project-card__thumbnail:hover .description {
        user-select: none;
        pointer-events: none;
        display: block;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;

        padding: 0.4rem;
        white-space: pre-wrap;
        font-size: 0.85rem;
        color: white;
        background: #02132f99;
        text-align: left;
    }

    .project-card__info {
        background: #fff;
        flex: 1;
        padding: 1.5rem;

        h2,
        h3,
        h4,
        p {
            margin: 0px;
        }

        h2 {
            font-size: 1.2rem;
        }

        h4 {
            font-size: 1rem;
        }

        div {
            display: flex;
            flex-flow: row;
            justify-content: space-between;
        }
    }

    .project-card__status {
        color: white;
        font-weight: bold;
        text-align: center;
        padding: 0.5rem;
    }

}

.project-card--is-upcoming {
    background: #04237e;
}

.project-card--is-open {
    background: #005915;
}

.project-card--is-closed {
    background: #6c0000;
}

.pagination {
    display: flex;
    justify-content: space-between;
}

.page-buttons {
    display: flex;
    flex-flow: row;
}

.page-button--current {
    background: var(--accent-color);
    color: var(--text-color-invert);
}