@charset "utf-8";
/* Author: WingKie 
	Date: 7 October 2023
*/

/* Element Selector */

body {
      font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
		margin: 0;
		padding: 0;
    }

    .container {
      display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
    }

    .image {
      flex: 1.5;
      margin-right: 20px;
		display: flex;
		align-items: flex-end;
    }

    .text {
      flex: 2;
		box-sizing: border-box;
    }

    img {
      max-width: 100%;
      height: auto;
		float: left;
    }

h1{
	color: #79AC78;
	text-align: center;
	font-size: 35px;
}

h3{
	color: #445D48;
	text-align: center;
	position: relative;
}


h3:before{
	content: "";
	width: 50vw;
	height: 1px;
	background: #000;
	position: absolute;
	left: 0;
	top: 50%;
	z-index: -3;
	}

h3:after{
	content: "";
	width: 50vw;
	height: 1px;
	background: #000;
	position: absolute;
	right: 0;
	top: 50%;
	z-index: -2;
	}

span{
	background: white;
	padding: 0 20px;

}

.text p {
      text-align: center;
	color: #CD5C08;
    }

.text ol,
.text ul {
  color: #CD5C08;
}

a {
  color: #A8DF8E;
}