body {
    font-family: serif;
    font-size: 18px;
    font-weight: 500;
}

.container {
	background-color: #e6f3f7;
    width: 70%;
    border: 1px solid black;
	border-radius: 5px;
    padding: 15px;
    margin: 0 auto;
}


textarea {
    width: 75%;
    field-sizing: content;
    min-height: 150px;
    overflow: hidden;
	border-radius: 3px;
	border-bottom: 2px solid green;
}

::placeholder {
    color: grey;
    opacity: 2;
}

h2 {
	color: #099ba0;
}

input[type=radio] {
	margin-bottom: 15px;
}	

input[type=submit], input[type=button], button {
	background-color: #099ba0;
	font-weight: bold;
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
}

input[type=submit]:hover, input[type=button]:hover, button:hover {
	background-color: #316081;
	transition: all 0.25s ease-in-out;
}