/*
Main CSS file for Sands v.1.0
Last modified on 2-13-2021
*/

/************************************
Style the header
*************************************/
header {
	background-color: transparent;
	height: 40vh;
	position: relative;
	align-items: center;
	justify-content: center;
	display: flex;
	color: orange;
}
header h1 {
	font-size: 58px;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/************************************
Style the body
*************************************/
body {
	height: 100%;
	background-image: url(images/sand_pic.jpg);
	background-size: cover;
	background-position: center;
 	background-color: #cccccc;
/*  	display: block;
 	overflow: auto; */
}
/************************************
-------USER INPUT FORM--------------
*************************************/
#theFORM {
	padding: 0 0 20vh 0;
}
#theFORM .button-div {
	display: inline-block;
	padding: 5px;
}
#input-form.container {
	padding: 0 !important;
}
.leftcol-v3 form input {
	width: 100%;
	height: 3rem;
	border-radius: 0.2rem;
	border: 2px inset transparent;
	-webkit-appearance: none;
	-webkit-box-shadow: 5px 10px rgba(0, 0, 0, 1);
	box-shadow: 5px 10px rgba(0, 0, 0, 1);
	background-color: beige;
	margin: auto;
	margin-bottom: 10px;
}
input[type='text']:focus {
	outline: none !important;
	border-color: black !important;
}
::placeholder { 
	opacity: 1;
	color: black;
}
/************************************
-------Style the buttons--------------
*************************************/
.leftcol-v3 form button {
	padding: 10px 20px;
	background-color: black;
	color: beige;
	opacity: 0.5;
	border: 2px solid transparent;
	border-radius: 0.2rem;
	margin:auto;
}
.leftcol-v3 form button:hover, .leftcol-v3 form button:active {
	background-color: beige;
	cursor: pointer;
	border-color: black;
	color: black;
}

/************************************
Style the text boxes
*************************************/
#text-container {
	margin: auto;
	padding: 0;
}
.text-col {
	height: 40%;
	padding: 0;
}
.text-col p {
	padding: 2rem;
	font-weight: bold;
	background-image: url(images/sand_pic.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 10%;
	border-radius: 15px;
	border: 3.5px solid black;
/* 	text-shadow: rgba(0, 0, 0, 0.75) 1px 0 10px; */
}
.text-col span{
	float: left;
	line-height: 70%;
	width: .6em;
	font-size: 400%;
}
/************************************
Style the footer 
*************************************/
footer p {
	margin: auto;
	padding: 1rem;
}
