:root {
    --main-bg-color: #887054;
    --main-section-color: #D0D9C8;
    --main-text-color: #222A17;
    --main-bg-bars: #B5B6B4;
}

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background: var(--main-bg-color);
    font-family:'Lora', Times, serif;
    margin-top: 20px;
    background: url("/images/background.jpg") no-repeat center center fixed;
    background-size: cover;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    padding-bottom: 5px;
}

#root, #__next {
    isolation: isolate;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 1em;
}

.content-box {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: var(--main-section-color);
    /* border: 1px solid lightblue; */
    color: var(--main-text-color);
    max-width: 800px;
    box-shadow:
        0 1px 1px hsl(0deg 0% 0% / 0.075),
        0 2px 2px hsl(0deg 0% 0% / 0.075),
        0 4px 4px hsl(0deg 0% 0% / 0.075),
        0 8px 8px hsl(0deg 0% 0% / 0.075),
        0 16px 16px hsl(0deg 0% 0% / 0.075)
    ;
}

@media only screen and (min-width: 700px) {
    .main-box {
        background-image: url("/images/celtic-cross2.svg");
        background-origin: content-box;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left;
     }
}

.info-box {
    list-style-image: url("/images/celtic-cross1.svg");
}

a {
    color: var(--main-text-color);
    font-family: helvetica;
    text-decoration: none;
}
  
a:hover {
    text-decoration: underline;
    color: rgb(17, 15, 15);
}

a:active {
    color: var(--main-text-color);
}

a:visited {
    color: var(--main-text-color);
}



