/*
main.css includes all other needed stylesheets. Keep in mind that 
the order affects the cascade.
Feel free to create more stylesheets or change the exisiting ones. This is just
a starting point.
See details in the single files.
*/
@import "reset.css";
@import "elements.css";
@import "structure.css";

body {
	--logoWidth: 20vw;
	--brightBlack: #2b2b2a;
	--darkGrey: #eee;
	background-color: #111;
	display: flex;
	text-align: left;
	font-family: 'Liberation Sans';
	padding: 0;
	margin: 0;
}

main {
	background-image: linear-gradient(
		  #666,
		  var(--darkGrey) 50vh,
		  #111 50vh
		  );
	min-height: 100vh;
	width: 100%;
	position: relative;
	margin-top: 0%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 1em;
}

.imageLogo {
	background-image: linear-gradient(transparent,49.5%,var(--darkGrey) 49.5%);
	clip-path: circle(calc(var(--logoWidth)/2));
	max-width: var(--logoWidth);
	min-width: var(--logoWidth);
	height: auto;
}

.companyInfo {
	color: var(--brightBlack);
	margin-left: 2em;
	display: flex;
	flex-direction: column;
    min-height: 100vh;
}
.companyInfo > section:first-child {
    min-height:50vh;
	align-content: end;
}

.companyName {
	font-size: 5vw;
	margin: 0;
}

.companyAdress {
	line-height: 1.25;
}

.companyEmployees {
	color: var(--darkGrey);
	line-height: 1.25;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1em;
	margin-top: 1em;
}

.companyEmployees h4 {
	margin: 0;
}

.employee {
	
}

