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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #555;
	padding:90px 0;
}

header, footer {
    position: fixed;
    width: 100%;
    z-index: 10;
    background-color: #000;
    color: white;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    background-color: #000;
    color: white;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
padding: 0 1rem;
}

.logo {

	display:flex;
	align-items: center;
}

.logo img {
    height: 84px;
	display: block;
	width: auto;
}


.header-text {
    flex: 1;
    text-align: center;
    font-size:3.0rem;
    font-weight:bold;
	color: #AAA;
}

.header-text span:not(.start):nth-child(odd){
    color: rgba(53, 110, 164, 0.88);
}

.header-text span:not(.start):nth-child(even){
    color: rgba(242, 212, 52, 0.68); 
}

header {
    top: 0;
    height: 90px; /* Vaste hoogte voor de header */
}

footer {
    bottom: 0;
    height: 90px; /* Vaste hoogte voor de footer */
    display: flex;
    justify-content: center;
    align-items: center;
	color:#AAA;
}

main {
	flex: 1;
	min-height: 0;
	margin:0;
	overflow: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0;
    background-color: #111;

}

.content {

    width: 100%;
    max-width: 1350px;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    background-image: url("https://projecten.ballpinnetje.nl/ballpinnetjelab.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.35s ease;
	transform-origin: center top; 
    cursor: zoom-in;
}
.content.groot {
    transform: scale(1.30);
    cursor: zoom-out;
    z-index: 5;

}



/* =====================================================
   MEDIA QUERIES - BALLPINNETJE LAB
   ===================================================== */
/* ==========================
   LAPTOP (ca. 1366 x 768)
   ========================== */
@media screen and (max-width:1400px){
    main{
        padding:10px;
    }
    .content{
        max-width:1150px;
    }
    .header-text{
        font-size:2.8rem;
    }
}
/* ==========================
   TABLET
   ========================== */
@media screen and (max-width:1024px){
    body{
      padding:70px 0;
    }
    header,
    footer{
        height:70px;
    }
    .logo img{
        height:68px;
    }
    .header-text{
        font-size:2.3rem;
    }
    main{
        padding:8px;
    }
    .content{
        max-width:100%;
        background-size:contain;
    }
}
/* ==========================
   MOBIEL
   ========================== */
@media screen and (max-width:768px){
    body{
        padding:55px 0 50px;
    }
    header{
        height:55px;
    }
    footer{
        height:50px;
    }
    .logo img{
        height:53px;
    }
    .header-text{
        font-size:1.8rem;
    }
    main{
        padding:4px;
    }
    .content{
        width:100%;
        max-width:100%;
        background-size:contain;
		transform-origin: center; 
    }

}
/* ==========================
   KLEINE TELEFOONS
   ========================== */
@media screen and (max-width:480px){
    .header-text{
        font-size:1.45rem;
    }
    main{
        padding:2px;
    }
}

@media (max-width:1024px){

    .content{

        cursor: default;

    }

}
