@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    //background: #9C6C48;
    background: #FFFFFF;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/background-pattern.png') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 400px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}
.foreground-decor {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    max-width: 400px;
    height: auto;
    aspect-ratio: 375 / 812;
    /* adjust to your image’s ratio */
    background: url('../img/background-pattern.png') no-repeat center center;
    background-size: contain;
    transform: translate(-50%, -50%);
    z-index: 0;
    /* below .container (z-index:1) */
    pointer-events: none;
}
.logo {
    max-width: 77%;
    display: block;
    margin: 0 auto 2rem;
}

#message-box {
    max-height: 60vh;
    overflow-y: auto;
//    background: rgba(93, 61, 44, 0.9);
    background: #E6DCCF;
    padding: 1.5rem;
    border-radius: 8px;
}

#message {
    /* Use Playfair Display for the quote, enforced !important */
    font-family: 'Playfair Display', serif !important;
    color: #fffff;
    font-size: 1 rem; //1.5
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
    z-index: 2;
}

