* {
    background-color: black;
}

.container {  display: grid;
    grid-template-columns: 0.3fr 1fr 1fr 1fr;
    grid-template-rows: 100px 1fr 1fr 1fr 1fr 100px;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "Heather Heather Heather Heather"
      "DEVOID DEVOID DEVOID DEVOID"
      ". Tekstgebied Tekstgebied Foto"
      ". Tekstgebied Tekstgebied Foto"
      "VOIDIE VOIDIE VOIDIE VOIDIE"
      "Footje Footje Footje Footje";
  }
  
  .Foto { grid-area: Foto; }
  
  .Heather { grid-area: Heather; }
  
  .Footje { grid-area: Footje; 
  background-color:#F19F05;
  }
  
  .Tekstgebied { grid-area: Tekstgebied;
  }
  
  .DEVOID { grid-area: DEVOID; }
  
  .VOIDIE { grid-area: VOIDIE; }
  
  
  html, body , .container {
    height: 100%;
    margin: 0;
  }
  

  #Kitty {
    display:flex;
    border-radius:50%;
    box-shadow: 0px 5px 5px 0px #BF7E04;
}

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

}

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

}

.Tekstgebied h1 {
  text-decoration: none;
    color:white;
    font-size: 20px;
}

.Tekstgebied p {
  text-decoration: none;
  color:white;
}

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

}  

.Foto {

  display:flex;
  align-items: center;
  justify-content: space-around;
}

.Tekstgebied {
    
    border-top: #BF7E04 4px solid;
    border-bottom: #BF7E04 4px solid;
    color: white;
    margin: 0%;
    padding: 2px;
    height: 400px;
    width: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
@media (max-width:768px) {

  .Tekstgebied {

    height: 450px;
    width: 500px;
    font-size: 12px;
  }

  #Kitty {
    width:100%;

  }
}