@charset "ISO-8859-1";

.head {
	color: white;
	background: #91214e;
	font-size: 180%;
	border: 1px solid #ebb6cb;
	padding: 6px 10px 8px 10px;
	width: 22%;
	border-radius: 1rem;
}

#headline {
	font-size: 150%;
	color: #91214e;
	/* text-shadow: 2px 2px #ebb6cb;" */
}

#contents {
	line-height: 2;
	font-size: 120%;
	border-radius: 1rem;
	border: 5px solid #ebb6cb;
	shadow: 2px 2px #ebb6cb;
}

#bold {
	color: #91214e;
	font-weight: bold;
}

* {
	box-sizing: border-box;
}

input[type=text], select, textarea {
	width: 75%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	resize: vertical;
}

label {
	padding: 12px 12px 12px 0px;
	display: inline-block;
}

input[type=submit] {
	background-color: #4CAF50;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	float: right;
}

input[type=submit]:hover {
	background-color: #45a049;
}

#form1 {
	margin-top: 2%;
	border-radius: 5px;
	background-color: #f2f2f2;
	padding: 20px;
}

#btn {
	padding-right: 45%;
}

#choose {
	padding-top: 5px;
	padding-left: 21%;
}

.col-25 {
	padding-left: 7%;
	float: left;
	width: 20%;
	margin-top: 6px;
}

}
.col-75 {
	float: left;
	width: 75%;
	margin-top: 6px;
	padding-right: 10%;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	.col-25, .col-75, input[type=submit] {
		width: 100%;
		margin-top: 0;
	}
}