/*************************************************
    Katholikos
*************************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;

    background: #ffe3f4;
}

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;
}

/* ---------------- Book Area ---------------- */

#Book {
    display: block;
    
    touch-action: manipulation;

    width: 95vw;
    max-width: 800px;
    height: calc(95vw * 0.625);
    max-height: 500px;

    margin: 40px auto 0;

    background: #ff66c4;

    background-image: linear-gradient(
        to right,
        transparent calc(50% - 50px),
        #d24c9f calc(50% - 50px),
        #d24c9f calc(50% + 50px),
        transparent calc(50% + 50px)
    );
}



