* {
    margin: 0px;
    padding: 0px;
    background-color: black;
    box-sizing: border-box;
}

.container {  display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 100px 1fr 1fr 200px 100px;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "NavHeader NavHeader NavHeader NavHeader NavHeader NavHeader"
      ". . . . . ."
      "MainTextArea MainTextArea MainTextArea MainTextArea Imagery Imagery"
      "TegeltjesKnoppen TegeltjesKnoppen TegeltjesKnoppen TegeltjesKnoppen . ."
      "Footertje Footertje Footertje Footertje Footertje Footertje";
  }
  
  .NavHeader { grid-area: NavHeader; 
display:flex;
align-items: center;
justify-content: space-between;
}

  
  .TegeltjesKnoppen { grid-area: TegeltjesKnoppen; 
    display:flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 50px;
    padding-bottom: 25px;
    padding-left: 250px;
    padding-right: 250px;
    text-align: center;
  }
  
  .Footertje { grid-area: Footertje;
  background-color:#F19F05;

  }
  
  .MainTextArea { grid-area: MainTextArea;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
  
  .Imagery { grid-area: Imagery;

}
  
  
  html, body , .container {
    height: 100%;
    margin: 0;
  }
  
  /* For presentation only, no need to copy the code below */
  /*
  .container * {
    border: 1px solid red;
    position: relative;
  }
  
  .container *:after {
    content:attr(class);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
  }
  */

.topnav {
    display:flex;
    align-items: center;
    justify-content: space-between;

}

h1 {
    color:#BF7E04;
    font-size: 32px;
    padding: 10px

}

.linkiewinkie a {
    text-decoration: none;
    color:white;
    font-size: 20px;
    padding: 10px

}       
.Knoppie {
background-color: #BF7E04;
color:#ffffff;
font-weight:bold;
text-align:center;
display: flex;
align-items: center;
justify-content: center;
border-radius: 45px;
flex: 0 0 auto;
width: 40%;
}

.Knoppie a{
  text-decoration: none;


}

p {
    text-decoration: none;
    color: white;
    font-size: 23px;


}

h2 {
    color:#ffffff;
    font-size: 50px;    

}
#Spook {
    width:60%;
    text-align:center;
    padding:20px;
}
#Sbook {
    text-align:center;
    padding:20px;
}
#Kitty {
    width:100%;
    border-radius:50%;
    width: 350px;
    height: 350px;
    box-shadow: 0px 5px 5px 0px #BF7E04;
}

.cleanLink:visited{
  text-decoration: none;
  background-color: #BF7E04;
  color: white;
}

.Snazzy h1 {

  display:flex; 
}

@media (max-width:768px) {

  	#Kitty {
      width:250px;
      height:250px;
    }

}



