@media (prefers-color-scheme: light) {
	body {
		background: #e2e2e2;
		color: #333;
	}

	h3 {
		color: #555;
	}
}

@media (prefers-color-scheme: dark) {
	body {
		background: #161a1d;
		color: #ccc;
	}

	h3 {
		color: #ccc;
	}
}


body {
	font-family: 'Varela Round', Helvetica, serif;
	font-size: 11pt;
	margin: 20px;
	padding: 0;
}

a, a:visited, a:active {
	color: #33cbf6;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

#site {
	margin: 50px auto;
	width: 95%;
	max-width: 900px;
}

#index {
	text-align: center;
	font-size: 14pt;
}

.join {
	text-align: center;
	font-size: 30pt;
	margin: 20px 0;
}

.yourShipping {
	color: #999;
}

.showUserForm {
	color: #33cbf6;
}

form {
	width: 90%;
	margin: 0 auto;
	max-width: 900px;
}

input[type=text] {
	font-size: 11pt;
	width: 95%;
	margin: 5px 0;
	padding: 10px;
}

textarea {
	font-size: 11pt;
	width: 95%;
	height: 200px;
	margin: 5px 0;
	padding: 10px;
}

input[type=submit] {
	float: right;
}

.imessage {
	display: flex;
	flex-direction: column;
	font-size: 1.25rem;
	margin: 0 auto 1rem;
	max-width: 600px;
	padding: 0.5rem 1.5rem;
}

.imessage_from_me {
	border-radius: 1.15rem;
	line-height: 1.25;
	max-width: 75%;
	padding: 0.5rem .875rem;
	position: relative;
	word-wrap: break-word;
	background-color: #248bf5;
	color: #fff; 
	margin: 5px 0 5px 120px;
}

.imessage_to_me {
	border-radius: 1.15rem;
	line-height: 1.25;
	max-width: 75%;
	padding: 0.5rem .875rem;
	position: relative;
	word-wrap: break-word;
	background-color: #e9e8ea;
	color: #444; 
	margin: 5px 0;
}

#messages_to_your_person, #messages_from_your_secret_santa {
	width: 600px;
	margin: 50px auto;
}

.messages_option {
	font-size: 18pt;
	color: #33cbf6;
	cursor: pointer;
	font-weight: bold;
	width: 90%;
	margin: 0 auto;
	padding: 20px;
	border: 1px solid #33cbf6;
	border-radius: 10px;
	background: #d2f5ff;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

.messages_option:hover {
	box-shadow: 0px 2px 5px rgba(0,0,0,0.3);	
}

.message_option_2 {
	font-size: 12pt;	
	line-height: 20px;
	font-weight: normal;
	padding: 5px 30px 10px 40px;
}

.message_option_2:hover {
	text-decoration: underline;
}

/* iPhone */
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) { 
	.messages_option {
		font-size: 12pt;
	}
}

