.page-container {
    max-width: var(--page-w);
    width: 100%;
    margin: auto;
}

.page {
    display: none;
}

.page.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* page header */
.page-header {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
    flex: 1 1 auto;
    width: 100%;
}

.page-header.center {
    text-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.page-header-icon {
    padding: 0.25rem;
    background-color: rgba(52, 24, 24, 0.05);

    border-radius: 0.5rem;
}

.page-header-icon img {
    /* size */
    width: 3rem;
    height: 3rem;
    margin: 0.5rem;
}

.page-header-title {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
}