/* Reset box sizing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    letter-spacing: 2px;
}

.hrla {
    width: 100%;
    border: none;
    border-top: 2px solid #FFFDF2;
}

div.container{
    background-color: #fdf2dbb6;
    padding: 50px;
    align-items: center;
    color: #613D24;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 0px 8px #000000, 0px 0px  8px #000000;
}
body.background {
    background-image: url("image/image_6e8e6fdc.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed; /* Ensures the background image stays fixed during scrolling. Works on Desktop. */
    margin: 25px;
    padding: 10px;
}

@media screen and (max-width: 767px) {
    body.background {
        background-attachment: scroll; /* Allows the background image to scroll with the content on smaller screens. Fixed breaks on mobile. */
        min-height: 100vh; /* Ensures the background covers the entire viewport height on mobile devices. */
        margin: 10px; /* Adjust margin for smaller screens */
        padding: 5px; /* Adjust padding for smaller screens */
    }
    .logo {
        width: 200px;
        height: 120px;
    }
    div.container {
        padding: 20px; /* Adjust padding for smaller screens */
    }
    .btn1 {
        width: 100%;
        justify-content: center;
    }
    h1,h1 span {
        font-size: 120% !important;
        letter-spacing: 1px !important;
    }
}

/* Style for the main heading text */
h1 {
  color: #613D24; /* Dark brown color */
}
.text {
    color: #613D24;
}

body {
    font-family: "Cinzel", serif;
    font-weight: 400;
}
h1, h1 span {
    font-family: "Sour Gummy", serif;
    font-weight: 700;
    font-size: 150%;
}
p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

/* Shared base styles */
.btn1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Cinzel", serif;
    font-weight: 700;
    color: #FDF2DB;
    background-color: #613D24;
    border: 1px solid #000000;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    /* text-shadow: 0px 0px 2px #ffffff; */
    /* box-shadow: 0px 0px 2px #ffffff, 0px 0px 8px #ffffff; */
}
.btn1:hover{
    background-color: #FFFDF2;
    color: #613D24;
    border-color:#000000
}
/* .highlight {
    background-color: #d4af3f;
    color: #000000;
} */