html
{
	font-size: 20px;
	height:100%;
    color: gray;
	font-family: "comfortaaregular", "Segoe UI", "Calibri";
}

body
{
	margin: 0;
	border: 0;
	padding: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height:100%;
	width:100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	background-image: url('bg.jpg');
	background-size: auto 100%;
	background-repeat: no-repeat;
	overflow: hidden;
	background-position: right;
}

a
{
	font-size: 17px;
	font-family: "comfortaaregular", "Segoe UI", "Calibri";
	color: rgba(0,0,0,0.5);
	margin: 0px 10px;
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}

h1,h2,h3
{
	margin: 0px;
	font-weight: normal;
}
h2
{
	font-family: "comfortaaregular", "Calibri", "Segoe UI";
	font-size: 50px;
	color: orange;
}
h3
{
	color: rgba(0,0,0,0.5);
	font-size: 17px;
	margin: 10px 0px;
}
h6
{
	padding: 0;
	margin: 0;
	width: 100%;
	height: 20px;
}

.icon
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100px;
	width: 100%;
}
image
{
	height: 60px;
	width: 60px;
}

button
{
	font-family: "comfortaaregular", "Segoe UI", "Calibri";
	font-size: 17px;
	background-color: transparent;
	color: rgba(0,0,0,0.5);
	border-radius: 20px;
	border-color: rgba(0,0,0,0.5);
	border-width: 1px;
}
button:hover
{
	border-color: orange;
	color: orange;
}

#right-div
{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
#logo {
	padding: 25px;
}

#left-div
{
	height: 100%;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: 50px 1fr 60px;
	grid-template-areas: 
	"header-div"
	"body-div"
	"footer-div";
	padding: 0px 25px;
	background-color: white;
}

#headerleft-div, #headerright-div
{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	font-size: 17px;
}

#body-div
{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: flex-start;
	height: 100%;
}

#footer-div
{
	display: flex;
	flex-direction: column;
	justify-content: flex-center;
	align-items: flex-start;
	font-size: 10px;
}

#form-div
{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

#services-div
{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	height: 100%;
	max-width: 500px;
}

.login
{
	padding: 7px 20px;
	margin-right: 30px;
}
.tile
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 120px;
	width: 120px;
	margin: 10px;
	padding: 0;
}