* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
}

body {
    background-color: #FAF7F2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #3a3a3a;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vh 3vw;
}

.container {
    width: 100%;
    max-width: 1200px;
}

.logo {
    text-align: center;
    margin-bottom: 8vh;
}

.logo img {
    width: 200px;
    height: auto;
}

.messages {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(20px, 3vw, 50px);
    align-items: start;
}

.message {
    font-size: clamp(11px, 1.05vw, 14px);
}

.message p {
    margin-bottom: 0.8em;
}

.signature {
    font-weight: 600;
    margin-top: 1.2em;
}

.message a {
    color: #c47a4a;
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
}

.message a:hover {
    text-decoration: underline;
}

.divider {
    border: none;
    align-self: stretch;
    width: 1px;
    margin: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            #c4a878 20%,
            #c4a878 80%,
            transparent 100%);
}

@media (max-width: 768px) {
    body {
        align-items: flex-start;
        padding: 40px 20px;
    }

    .logo {
        margin-bottom: 40px;
    }

    .logo img {
        width: 150px;
        height: auto;
    }

    .messages {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .message {
        font-size: 14px;
        line-height: 1.7;
    }

    .divider {
        width: 160px;
        height: 1px;
        justify-self: center;
        background: linear-gradient(to right,
                transparent 0%,
                #c4a878 20%,
                #c4a878 80%,
                transparent 100%);
    }
}