

html, body 
{
    background-color: white;
    margin: 10px;
    /*background: url(https://static.vecteezy.com/ti/gratis-vector/p3/2822427-abstract-lijnen-en-punten-verbinden-achtergrond-technologie-verbinding-digitale-data-en-big-data-concept-vector.jpg);*/
	background-image:cover;
}

.wrapper
{
	width: 100%;

}

h1
{
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 38px;
	text-align: center;
	
}

.container > div 
{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: white;
}

.container > div > img 
{
    width: 100%;
    height: 100%;
    object-fit: contain;
	border: 1px solid black
}


.container 
{
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: 125px;
	grid-auto-flow: dense; /* Fill all spaces with fitted images */
}

.horizontal 
{
	grid-column: span 2;
}

.vertical 
{
	grid-row: span 2;
}

.big 
{
	grid-column: span 2;
	grid-row: span 2;
}

.promptlogo 
{
  position: static;
  top: 10px;
  //left: 2px;
  right: 3px;
  height: 28px;
  width: 80px;
  // border: 1px solid #2E528A;
  background-image: url('https://support.fritec.nl/img/ibp_2022_kleur.png');
  padding-left: 1px;
  background-size: contain;
  background-repeat: no-repeat;
  // box-shadow: 3px 3px 2px black;
  z-index: -100;
  // display: none;
  float: right;
}

.header 
{
  padding: 1px;
  height: 30px;
  background-color: #2E528A;
}

.footer 
{
  position: relative;
  background-color: #2E528A;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 0px;
  padding-bottom: 0px;
  padding-bottom: 0px;
  width: 100%;
  height: 20px;
}



@media screen and (min-width: 1024px){
	.wrapper{
		width: 960px;
		margin: 0 auto;
		position: relative;
		top: 40px;
	}
}
