body {
    --dpg-main-color: #B58C67;
    --dpg-border-color: #B58C67;
    /* --dpg-border-color: #e8c96d; */
    --dpg-btn-color: #d6c3a8;
    
    position: relative;
    /* font-family: Arial, sans-serif; */
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: 14px; */
    font-family: Montserrat, sans-serif;
    /* font-family: Jost, sans-serif; */
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    background-color: #617344;
    color: #f7ebd9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0 auto;
}

a {
    text-decoration: none;
    /* color: #333; */
    color: #f7ebd9;
    
    transition: all .3s ease-in-out;
}

a:hover {
    opacity: 0.75;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.container {
    padding: 45px 25px;
    max-width: 100%;
}

header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: #fff; */
    /* border-radius: 2px; */
    /* padding: 20px; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    margin-bottom: 25px;
    margin-bottom: 20px;
}

.title {
    font-family: Lora, serif;
}

.signature {
    font-family: "Mrs Saint Delafield", cursive, serif;
    font-size: 46px;
    transform: rotate(-6deg);
    position: absolute;
    right: -6px;
    right: 37px;
    bottom: 30px;
    text-align: right;
}

.logo {
    max-width: 368px;
    margin-bottom: 10px;
}

.slogan {
    position: relative;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 1px;
    text-align: justify;
    max-width: 510px;
    max-width: 400px;
}

.slogan .signature {
    text-align: right;
    margin-bottom: -15px;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

nav a {
    font-size: 22px;
    padding: 3px;
    margin: 4px;
}

.contact-info {
    /* background-color: #fff; */
    /* border-radius: 2px; */
    /* padding: 20px; */
    width: 100%;
    max-width: 600px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    text-align: center;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info p:last-child {
    margin-bottom: 0;
}


.btn {
    padding: 12px 24px;
}

.btn.dpg-btn-outlined {
    position: relative;
    color: var(--dpg-btn-color, #111);
    background-color: transparent;
    border: 1px solid var(--dpg-border-color);
}

.btn.dpg-btn-outlined:hover {
    /* color: var(--dpg-btn-color, #111); */
    border-color: var(--dpg-border-hover-color, var(--dpg-border-color));
}

.btn.dpg-btn-outlined:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    opacity: .75;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background-repeat: no-repeat;
    background-size: 0% 1px, 1px 0%;
    background-position: 0 0, 100% 100%, 100% 100%, 0 0;
    background-image: linear-gradient(0deg, var(--dpg-border-color), var(--dpg-border-color)), linear-gradient(0deg, var(--dpg-border-color), var(--dpg-border-color)), linear-gradient(0deg, var(--dpg-border-color), var(--dpg-border-color)), linear-gradient(0deg, var(--dpg-border-color), var(--dpg-border-color));
    transition: opacity .2s ease-out, background-size .6s cubic-bezier(.35,.05,.3,.9);
    pointer-events: none;
}

.btn.dpg-btn-outlined:hover:after {
    background-size: calc(96%) 1px, 1px calc(96%);
}
