main {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  background: black;
}

a {
  display: block;
  position: fixed;

  left: 2vw;
  top: 2vw;

  font-size: 2vw;
  font-family: 'Space Mono', monospace;

  
  text-decoration: none;
  color: white;

  padding-left: 0.2vw;
  padding-right: 0.2vw;

  border: 0.01vw solid white;
  border-bottom: 0.2vw solid white;
  border-radius: 0.35vw;

  z-index: 10;
}

a:hover {

  display: block;
  font-size: 2vw;
  text-decoration: none;
  color: white;

  margin-top: 0.2vw;
  padding-top: 0vw;
  padding-bottom: 0.2vw;
  border: 0.01vw solid white;

  border-radius: 0.35vw;
}

#id { 
  position: fixed;
  top: 0;
  left: 0;
}

#bg {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  max-width: 100%;
  z-index: -1;
  margin: auto;
  
}

#bText {
  position: absolute;
  max-width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

body {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  background: black;
}

#fg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

h1 {
  color: black;
  z-index: 1;

  font-family: 'Space Mono', monospace;
}


.gridWrapper {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12,1fr);

}

.projectLinkWrapper {
  background: rgba(6, 26, 35, 0.5)
}

.centred {
  margin: auto;
}

.oddDiv {
  grid-column-start: 2;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 4;
}

.evenDiv {
  grid-column-start: 2;
  grid-column-end: 12;
  justify-self: right;
}

.oddDiv h1 {
  color: white;
  z-index: 1;
}