@font-face {
		font-family: "PTSansRegular";
		src: url("https://proforma.org.ru/css/fonts/PTSans/ptsans.woff") format("woff");
		font-style: normal;
		font-weight: normal;
	}
	
@font-face {
	font-family: "PTSansBold";
	src: url("https://proforma.org.ru/css/fonts/PTSans/ptsansbold.woff") format("woff");
	font-style: normal;
	font-weight: normal;
}
	
	@font-face {
		font-family: "StaroUsp";
		src: url("https://proforma.org.ru/css/fonts/StaroUspIEUCS/starouspenskaya-ieucs.woff2") format("woff");
		font-style: normal;
		font-weight: normal;
	}
	
	@font-face {
		font-family: "PoluUstav";
		src: url("https://proforma.org.ru/css/fonts/PoluUstav/poluustav.woff2") format("woff");
		font-style: normal;
		font-weight: normal;
	}

@font-face {
	font-family: "SPSLNewCyrillic";
	src: url("https://proforma.org.ru/css/fonts/SPSLNewCyrillic/spsl-new-cyrillic.woff2")
		format("woff");
	font-style: normal;
	font-weight: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	height: 100%;
	font-family: SPSLNewCyrillic;
}

body {
	height: 100vh;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: stretch;
	background-color: rgba(15, 23, 42, 1);
  overflow: hidden;
}

header {
	height: 50px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	padding: 10px;
	color: white;
}

nav {
	height: 50px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-top: 2px solid rgb(51, 65, 85);
	border-bottom: 2px solid rgb(51, 65, 85);
}

div.navigation {
	height: 50%;
	width: max(120px, 10vw);
	background-color: rgb(30, 41, 59);
	color: rgb(248, 250, 252);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	box-shadow: 0 0 0 4px rgb(30, 41, 59);
	border: 2px solid rgb(51, 65, 85);
	border-radius: 5px;
	padding: 10px;
	cursor: pointer;
}

.viewMode {
	height: 100%;
	cursor: pointer;
}

main {
  flex: 1;
	background-color: bisque;
	display: flex;
	justify-content: flex-start;
	gap: 12px;
	padding: 12px;
  overflow-y: auto;
}

.getListed {
  display: flex;
	flex-flow: column nowrap;
	align-items: stretch;
}

.getTiled {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  /* row-gap: 50px; */
  /* column-gap: 16px; */
}

/* .getTiled {
  display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	align-content: flex-start;
} */

div.jobCards {
	background-color: rgb(30, 41, 59);
	color: rgb(248, 250, 252);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	box-shadow: 0 0 0 4px rgb(30, 41, 59);
	border: 2px solid rgb(51, 65, 85);
	border-radius: 5px;
	padding: 10px;
	cursor: pointer;
}

main.getTiled .jobCards {
	/* width: min(20vw, 200px);
	height: max(200px, 20vh); */
  /* flex: 0 0 calc(33.333% - 12px); */
  aspect-ratio: 1/1;
  /* overflow: hidden; */
}

footer {
	height: 50px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
  color: rgb(100, 116, 139);
}
