* {
	font-family: 'Poppins', sans-serif;
}
h1 {
	font-size: 50px;
	font-weight: 600;
	color: black;
}
span {
	font-size: 16px;
	font-weight: 600;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    background-color: #fff;
    color: #be9657;
    text-align: center;
}
.container {
    /* max-width: 1400px; */
    margin: 0 auto;
    /* padding: 60px 40px; */
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    /* column-gap: 100px; */
}
.container .col {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}
.container .col-brown {
    background-color: #be9657;
    color: white;
}
span {
   font-size: 26px;
   font-weight: bold;
   text-transform: uppercase; 
}
.logo {
    max-width: 450px;
    margin-bottom: 40px;
}
h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 25px;
}
p { 
    font-size: 20px;
    line-height: 1.6;
    margin: 15px 0;
}
.text-to-center {
    min-height: 64px;
}
.signature {
    margin-top: 40px;
    font-size: 22px;
    font-style: italic;
}

@media only screen and (max-width: 1200px) {
    .container {
        flex-direction: column;
    }
    .container .col {
        width: 100%;
        height: unset;
        padding: 60px 40px;
    }
}