body {
    font-family: 'Times New Roman', serif;
    color: #444;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    background-color: #f7e5d4; 
}

.container {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    margin-bottom: 50px;
}

.container.imprint p {
    font-size: 0.8em;
}

h1 {
    text-align: center;
    color: #555;
    padding: 20px 0;
    font-family: 'Georgia', serif;
    font-size: 2.2em;
    text-shadow: -1px 0 white, 0 2px white, 2px 0 white, 0 -1px white; /* This will create a white outline around the text */
    margin-bottom: -35px;
}

h2 {
    text-align: center;
    color: #555; /* Make the h2 text slightly brighter than h1 */
    font-family: 'Georgia', serif;
    font-size: 1.5em;
}

p {
    color: #5d5b59;
    font-size: 1.8em;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.6;
}

a.btn {
    display: block;
    width: 30%; /* Make the button 75% the width of the container */
    margin: 0 auto; /* Center the button */
    color: #555;
    text-decoration: none;
    border: 2px solid #5d5b59;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.7);
    text-align: center; /* Center the text inside the button */
}

a.btn:hover {
    background: #5d5b59;
    color: #fff;
}

a.mail {
    color: #555;
    text-decoration: none;
}

@media screen and (max-width: 960px) {
    .container {
        width: 100%;
        padding: 20px;
    }

    h1 {
        font-size: 1.2em;
        text-shadow: -0.5px 0 white, 0 1px white, 1px 0 white, 0 -0.5px white; /* Reduce the outline */
        margin-bottom: -25px; /* Adjust the margin */
    }

    h2 {
        font-size: 1em; /* Adjust the size of h2 to maintain proportion with h1 */
    }

    p {
        font-size: 1.2em; 
    }

    a.btn {
        margin-top: 20px;
        font-size: 1.2em;
    }
}

