*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;

} 

main{
  display:grid;
    grid-template-columns: .5fr .3fr .5fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
    "one two three"
    "five five five" ;
}
img{
  padding-top: 3%;
  max-width: 100%;
}
#git{
  position: absolute;
  size: 50%;
}