/* custom property */
:root {
	--global-color-1: black;
	background-color: white;
}
* {
	margin: 0;
	padding: 0;
}

/* the styles for the elements */
body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
    margin-left: 1em;
	width: 90%;
	margin: 0 auto;
	border: 3px solid black;
	background-color: #fffded;
	text-indent: 1em;
}
a:focus, a:hover {
	font-style: italic;
	
}
a:visited{
	color: azure;
}
/* the styles for the header */
header {
	padding-top: 1.5em;
	padding-bottom: 2.0em;
	border-bottom: .5em solid rgb(102, 147, 230);
	background-image: linear-gradient(
		30deg, rgb(28, 209, 230) 0%, rgb(164, 245, 230) 30%, white 50%, #a1d2f1 80%,  #ebbaf8 100%);
}
header h2 {
	font-size: 150%;
	color: rgb(20, 111, 4);
	
}
header h3 {
	font-size: 130%;
	font-style: italic;
	
}
header img {
	float: left;
	padding: 0 30px;
}

.shadow {
	text-shadow: .1em .1em .1em #f1f157;
}
/* the styles for the main content */
main {
	clear: left;
	padding: 0 30px;
	
}
#rentals {
	display: flex;
	flex-direction: row;
	text-indent: 0em;
	padding-bottom: 1em;
	
	
}
#rentals ul {
	display: flex;
	flex-direction: row;
	flex-basis: 100%;
	list-style-type: none;
	justify-content: space-between;
}
main #rentals ul li{
	flex-direction: column;
	width: flex-basis;
	flex-basis: 24%;
	display: block;
	background-color: blue;
	color: white;

}
#rentals ul ul{
	display: none;
}


main img{
	clear: both;
	padding-left: 1em;
	float: right;
}
main h2 {
	color: var(--global-color-1);
	font-size: 130%;
	padding: .5em 0 .25em 0;
	text-indent: 0;
}
blockquote{
	padding-bottom: 1em;
}
table {
	margin: auto;
	border: 1px solid #3399CC;
	width: 100%;
	border-spacing: 0;
	float: left;
	
  }
  th, td {
	border: 1px solid #3399CC; padding: 5px;
  text-align:left;
  }
  td {
	text-align: center;
  }


main h3 {
	font-size: 105%;
	padding-bottom: .25em;
	padding-top: 1em;
}
main img {
	padding-bottom: 1em;
}
main p {
	padding-top: .5em;
	padding-bottom: .5em;
}


/* the styles for the footer */
footer p {
	text-align: center;
	padding: 1em 0;
	background-color: #21aab4;
	color: white;
	clear: both;
}
