﻿@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap');



body, html {
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    color: #0A4322;
    background-color: #F8FDF9;
    /*font-family: 'Segoe UI Semilight', 'Segoe UI', 'Trebuchet MS', Arial;
    font-weight: 300;*/
    font-size: 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
}
* {
    box-sizing: border-box;
}
body {
    overflow-y: scroll;
}

#well {
    background-color: #FFF;
    position: relative;
    max-width: 900px;
    min-width: 628px;
    margin: 0 auto;
    min-height: 100%;
    box-shadow: 0px 0px 12px 1px rgba(192,192,192,0.18), 0px 0px 5px 1px rgba(192,192,192,0.25);
}

#title {
    font-size: 36pt;
    text-align: center;
    font-family: Garamond;
}

    #title::before, #title::after {
        display: inline-block;
        position: relative;
        top: 38px;
        right: 16px;
        width: 141px;
        height: 86px;
        content: url('/images/ivy.png');
    }

    #title::after {
        right: 0;
        left: 16px;
        transform: rotateY(180deg);
    }

.hr-deco {
    text-align: center;
}

.break {
    display: inline-block;
    height: 2px;
    width: 240px;
}

    .break.right {
        margin: 0 0 0 20px;
        background: linear-gradient(to right, rgba(25,118,24,1) 0%,rgba(15,71,14,1) 40%,rgba(7,32,6,0.6) 68%,rgba(0,0,0,0) 100%);
    }

    .break.left {
        margin: 0 20px 0 0;
        background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(7,32,6,0.6) 32%,rgba(15,71,14,1) 60%,rgba(25,118,24,1) 100%);
    }

.leaf {
    position: relative;
    margin-top: -15px;
    top: 20px;
}

.inline-list {
    display: block;
    text-align: center;
    margin: 8px 0 5px 0;
    padding: 0;
}

    .inline-list li {
        display: inline-block;
    }

        .inline-list li:not(:last-of-type)::after {
            content: "▪";
            width: 14px;
            height: 14px;
        }

        .inline-list li a {
            color: #197618;
            padding: 0 12px;
            font-size: 14pt;
        }

#content {
    padding: 35px 60px 60px 60px;
    line-height: 1.6;
    vertical-align: top;
    text-align: justify
}

    #content p {
        margin-block-end: 2em;
    }

        #content p:last-of-type {
            margin-block-end: 0;
        }

    #content ul li {
        margin-block-end: 2em;
    }

#footerContent {
    padding: 2em 0;
    text-align: center;
}

aside {
    margin: 5px 0 20px 15px;
    color: #777;
}

    aside a, aside a:hover, aside a:visited, aside a:active {
        color: #777;
    }

label {
    display: block;
    margin: 1em 0;
}

select, option, input[type=text], input[type=submit], textarea {
    resize: none;
    border-radius: 0.25rem;
    display: block;
    min-width: 100%;
    max-width: 100%;
    min-height: 0.5rem;
    border: 1px solid #197618;
    padding: 5px;
    color: #0A4322;
    font-size: 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    margin: 0.25em 0 0 0;
    background-color: white;
}

.field-validation-error {
    color: #FF5974;
    font-size: 16px;
}

button {
    font-size: 25px;
    color: #fff;
    background-color: #0A4322;
    padding: 16px 20px;
    float: right;
    border-radius: 0.25rem;
}

.right-aligned-button-container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: end;
}

.page-header {
    display: flex;
    justify-content: center;
    font-size: 25px;
    margin: 18px 0 0 0;
}

.centered {
    text-align: center;
}