
:root {
    --main-font-family: "MS PGothic", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

html {
    background-image: url("/shrines/goodomens/_img/paper.jpg");
    background-size: 500px;
    image-rendering: auto;
    color: #5e3023;
}

html *::selection {
    color: white;
    background-color: #986334;
}

body {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    font-family: var(--main-font-family);
    margin-top: 30px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
}

.main {
    position: relative;
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 10px;
}


.header {
    max-width: 80%;
    image-rendering: pixelated;
}


.breaker {
    margin: 0 auto;
    width: 100px;
    margin: 10px;
}

p, .pic {
    padding: 0px;
    margin: 10px 0px;
}


.pic {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.portrait {
    width: 140px;
}

.dif {
    /* font-style: italic; */
    font-weight: bold;
}

.dif2 {
    font-size: 1.3em;
    display: inline-block;
    width: 100%;
    padding-bottom: 10px;
    font-weight: bold;
}

.c {
    text-align: end;
}

#back {
    color: #5e3023;
    text-decoration: none;
}

#back:hover {
    color: #5e3023;
    text-decoration: underline;
    color: #986334;
}


@media only screen and (max-width: 700px) {

    .pic {
        flex-direction: column;
    }

    .dif2 {
        text-align: center;
        margin-top: -10px;
    }

    #c {
        flex-direction: column-reverse;
    }



}