
@import "stars.css";

:root
{
	--body-max-width: 900px;
}

body
{
	display: flex;
  flex-direction: column;
  min-height: 100vh;
	max-width: var(--body-max-width);
  margin: auto;
}

header
{
	position: fixed;
  width: -webkit-fill-available;
  max-width: var(--body-max-width);
	display: flex;
	z-index: 1;
	background-image: url(students.jpg);
  background-position: center;
}

header > div
{
	display: flex;
  align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
	flex-grow: 1;
}

.enterprise-name-contener
{
	flex-grow: 1;
}

.enterprise-name-contener strong
{
	font-size: 3em;
  font-family: serif;
	white-space: nowrap;
}

#logo
{
	height: 100px;
	margin: 5px;
}

main
{
	flex-grow: 1;
	display: flex;
  flex-direction: column;
  padding: 0% 2%;
  background: radial-gradient(ellipse at center, #1b2735 10%, #090a0f 100%);
	
	color: lightgray;
  font-size: 1.3em;
	
	margin-top: 120px;
}

main > div:first-child
{
	margin: 15px;
}

main li
{
	margin: 3% 0%;
}

h2
{
	text-align: center;
}

.site-presentation-contener
{
	text-align: center;
}

img.site-presentation
{
	width: 80%;
	border-radius: 15px;
	filter: brightness(0.8);
}

img.site-presentation:hover
{
	filter: brightness(1.0);
}

#price > div
{
	text-align: center;
	background: linear-gradient(120deg, rgb(250 250 250 / 0%) 20%, #514f4f 50%, rgba(0, 0, 0, .0) 80%);
	color: white;
	margin: 5% 0%;
}

#price > div > span
{
	font-size: xxx-large;
	font-family: math;
  font-weight: bold;
}

.btn-contener
{
	text-align: center;
}

.btn-contener, .btn-contener a
{
	padding: 10px;
}

main .btn-contener a
{
	text-decoration: none;
	align-self: center;
	background-color: crimson;
  color: white;
	border-radius: 8px;
}

main .btn-contener a:hover
{
	filter: brightness(1.3);
}

.demo
{
  padding: 5px;
}

table.demo-credential
{
	margin: 10px auto;
}

table.demo-credential td
{
	border: 1px solid gray;
	padding: 5px;
}

.demo > div:last-child
{
	font-style: italic;
	font-size: smaller;
}

footer
{
	display: flex;
  align-items: center;
  justify-content: center;
  color: papayawhip;
	background: linear-gradient(0deg, rgb(0 0 0 / 35%) 0%, #8d6e63 20%, rgb(0 0 0 / 35%) 100%);
	min-height: 50px;
	text-align: center;
}

footer > div
{
	display: flex;
	flex-direction: column;
}