* {
background-color:black;


}


.container {  display: grid;
  grid-template-columns: 0.2fr 1fr 1fr 1fr 0.2fr;
  grid-template-rows: 100px 30fr 100px;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "Heather Heather Heather Heather Heather"
    ". Projecticus Projecticus Projecticus ."
    "Footer Footer Footer Footer Footer";
}

.Heather { grid-area: Heather;}

.Footer { grid-area: Footer; }

.Projecticus { grid-area: Projecticus;}


html, body , .container {
  height: 100%;
  margin: 0;
}

/*

.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;
}
*/

.Pieter {
border-top:#BF7E04 4px solid;
border-bottom:#BF7E04 4px solid;
color: white;
/* max-width:50%; */
margin:0%;
padding: 5px;
display: block;

}

.Snazzy {
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;

}
.Snazzy h1 {
  width:100%;
  /* text-align:center;   */
  color:#BF7E04;
  margin-top: 0;
}

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

.linkiewinkie {
  color:white;
}

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

}

.Heather {

  display:flex;
      flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;  

}


.portfolio-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 90px;
  margin: 30px;
}

.image-container img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.cleanLink img {

  height: 380;
  object-fit: fill;
  aspect-ratio: 5 / 3;
  background-color:white;
}

#Bookie {
  width:450px;
  height:270px;
}

@media (max-width:768px) {

  .Snazzy {
    font-size:12px;
  }



  #Bookie {
    width:400px;
    height:220px; 
  }
}

@media (max-width:450px) {

  .linkiewinkie a {
    font-size:12px;
  }

    .Heather h1 {
      font-size:18px;
    }

    #Bookie {
      width:250px;
      height: 170px;
    }

    .Snazzy {

      height:300px;
    }

    .image-container {

      height:200px;
    }

    .portfolio-item {
      column-gap:30px;
    }
  }


