body {
  font-family: 'Lexend', sans-serif;
}
h4 {
	margin-bottom: -10px;
}

.container {
	max-width: 800px;
	overflow-x: hidden;
	overflow-y: hidden;
	margin: 50px auto;
	padding: 20px;
	position: relative;
	border: 10px solid LightSeaGreen;
	border-radius: 20px;
	background-color: beige;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.container::before,
.container::after {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	z-index: -1;
	/*background-image: url('flower.png');=*/
	/*background-size: cover;*/
	border-radius: 30px;
}

.container::before {
	transform: rotate(45deg);
}

.container::after {
	transform: rotate(-45deg);
}

footer {
    display: flex;
    font-size: 12px;
    margin-top:10px;
    width: 100%;
    justify-content: right;
    color: #555;
}