.page_wrapper {
    display: flex;
    flex-direction: column;
    /* flex: 1; */
    padding-top: 4rem;
}

.page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title_page_container,
.page_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background-color: rgb(243, 244, 246);
    border-radius: 1rem;
    width: 90%;
    max-width: 60rem;
    padding: 4rem;
    box-shadow: 0 0.5rem 0.5rem 0 lightgray;
    border: 0.0625rem solid lightgray;
    box-sizing: border-box;
}

.page_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.title_page_title,
.page_title {
    font-size: 3rem;
    font-weight: normal;
    margin: 0;
    align-self: center;
}

.container_text {
    grid-column: 1 / 2;
    line-height: 1.5;
    font-size: 1rem;
}

.image_container {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile_image {
    width: 100%;
    max-width: 20rem;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
}

.quick_link_list {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.quick_link_box {
    display: flex;
    background-color: rgb(0, 110, 255);
    width: 3rem;
    height: 3rem;
    border-radius: 0.25rem;
    transition: transform 0.2s;
}

.quick_link_box:hover {
    transform: scale(1.1);
}

.quick_link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.quick_link_icon {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.button_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem;
    padding: 0;
    margin-top: 2rem;
}

.page_button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    width: 100%;
    max-width: 25rem;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: left;
    box-shadow: 0 0.5rem 0.5rem 0 lightgray;
    line-height: 1.5;
    margin: 0 auto;
    box-sizing: border-box;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
}

.page_button:hover {
    background-color: rgb(0, 110, 255);
    color: white;
}

.page_footer {
    font-size: 2rem;
    margin-top: 2rem;
}