* {
	box-sizing: border-box;	
}

body,html {
	font-family: "Poppins", sans-serif;
	font-size: 12pt;
	font-weight:300;
	margin:0px;
	width:100%;
	height:100%;
	background:white;
	color:#333;
}

#main-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width:760px;
    min-height: 100%;
}

#main-flex > * {
    margin: 0px 10px;
}

#row1-flex img {
    max-width: 400px;
    margin-bottom: 30px;
    margin-top:10px;
}

#row2-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

#row2-flex img {
    max-width: 360px;;
}

#contact-flex > form {
    margin-top:30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom:30px;
}

input, textarea {
    border:solid 2px black;
    padding:10px;
    font-family: "Poppins", sans-serif;
    font-size: 12pt;
    color:#333;
    flex-grow: 1;
}

textarea {
    width:100%;
}

input[type=submit] {
    width:100%;
    background-color: white;
    cursor: pointer;
}

#address-flex {
    margin-top:30px;
    border:solid 2px black;
    padding:20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#flex-thank {
    background-color: #c1e69a;
    width:100%;
    padding:20px;
    text-align: center;
}