body {
    height: 100vh;
    margin: 0;
    font-family: 'Georgia', serif;
    text-align: center;
    background-color: #F4F2DD;
    display: flex;
    align-items: center; 
    justify-content: center;
    flex-direction: column; 
    z-index: 1000;
}

.blurb-container {
    width: 90%; 
    max-width: 700px;
    padding: 20px;
    text-align: center;
    z-index: 1000;
}

h1 {
    padding: 10px 20px;
    margin: 10px;
    font-size: 3.5em; 
    color: #315E26;
    font-family: 'Georgia', serif;
    font-style: italic; 
    font-weight: 600; 
    letter-spacing: 1px; 
    text-align: center;
    border-bottom: 1px solid #769F54;
    padding-bottom: 10px; 
    line-height: 1.3; 
    z-index: 1000;
}

h2 {
    padding: 10px 20px;
    margin: 10px;
    font-size: 1.5em;
    color: #315E26;
    text-align: center;
    font-family: 'Georgia', serif;
    z-index: 1000;
}
h3 {
    padding: 10px 20px;
    margin: 10px;
    font-size: 1.25em;
    color: #315E26;
    text-align: center;
    font-family: 'Georgia', serif;
    z-index: 1000;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #f3d9c6;
    color: #A15B20;
    border: none;
    font-family: 'Georgia', serif;
    border-radius: 5px;
    cursor: pointer;
}

.button-container {
    display: flex;
    align-items: center; 
    gap: 15px; 
    justify-content: center;
    flex-wrap: wrap; 
}

button:hover {
    background-color: #dcb2a9;
}

.logo {
    position: absolute; 
    top: 0; 
    left: 0;
    padding: 10px 15px;
    width: 150px;
    height: auto; 
    display: flex;
    z-index: 1000;
}

.background {
    position: absolute; 
    width: 30vw; 
    height: auto; 
    pointer-events: none;
    z-index: 0; 
}

.background.bottom-left {
    bottom: 0;
    left: 0;
    
}

.background.top-right {
    top: 0;
    right: 0;
    transform: rotate(180deg)
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1em;
    }
    h3 {
        font-size: 0.8em;
    }
    .background {
        width: 40vw; 
    }
}
