/*************************************************
    Katholikos
*************************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    background: #ffe3f4;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    display: flex;
    flex-direction: column;
}

/* ---------------- Header ---------------- */

.site-header {
    width: 100%;
    height: 80px;

    background: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;
}

.site-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35em;

    font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;

    font-size: 2.4rem;
    color: #45a3ff;

    text-decoration: none;
    line-height: 1;
}

.cross {
    font-size: 2em;
    line-height: 1;
}

.motto-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.motto-image {
    display: block;
    width: 500px;
    max-width: 90vw;
    height: auto;
}

/* ---------- Divider Top ---------- */

.divider-top-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.divider-top-image {
    display: block;
    width: 500px;
    max-width: 90vw;
    height: auto;
}

/* ---------- Divider Middle ---------- */

.divider-mid-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.divider-mid-image {
    display: block;
    width: 500px;
    max-width: 90vw;
    height: auto;
}

/* ---------- Divider Bottom ---------- */

.divider-bottom-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.divider-bottom-image {
    display: block;
    width: 500px;
    max-width: 90vw;
    height: auto;
}
/* ---------------- Links ---------------- */

.menu-link {
    display: block;
    width: fit-content;

    margin: 10px auto 0;

    color: #45a3ff;
    text-decoration: none;

    font-size: 2rem;
    text-align: center;
}