body {
	padding-right: 0%;
	background-color: whitesmoke;
}

.card {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	width: 256px;
	transition: 0.3s;
	margin: 5px 5px 5px 5px;
	background-color: white;
}

.card:hover {
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
	background-color: lightcyan;
}

.container {
	padding: 2px 16px;
}

input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	margin-top: 6px;
	margin-bottom: 16px;
	resize: vertical;
	outline: none;
	transition: 0.2s;
}

input:focus {
	border: 3px solid rgb(50, 94, 216);
}

button {
	background-color: rgba(50, 94, 216, 1);
	transition: 0.3s;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

button:hover {
	background-color: rgba(50, 94, 216, 0.8);
}

.form-container {
	border-radius: 5px;
	background-color: #f2f2f2;
	padding: 20px;
}

.title-bar {
	position: fixed;
	white-space: nowrap;
	left: 0px;
	top: 0px;
	bottom: 0px;
	height: 100%;
}