/* Font-Setup */

* {
  margin: 0;
  padding: 0;
}

html {
  font-family: 'UnifrakturCook' ;
  font-size: 62.5%;
  font-weight: 700;
}

body {
  font-size: 1.6rem;
  background-color: black;

}

h1 {
  font-size: 8rem;
  color: white;
  position: absolute;
}

a {
  font-size: 3rem;
  color: white;
  position: relative;
  text-decoration: none;
  font-family: 'UnifrakturCook' ;
  font-weight: 700;
  padding-left: 32px;
}


canvas { 
  width: 100%; 
  height: 80%;
  z-index: -100;
  background-color: none;
  position: absolute;

}

.footer {
  width:100%;
  height:20%;
  position: fixed;
  bottom: 0px;
  background-color: black;
  text-align: center;
}



.container{
  display: grid;
  position: absolute;
  width: 100vw;
  height: 100vh;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  padding-left: 32px;
  padding-top: 32px;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}

.item-1 {
  grid-row: 1;
}
.item-2 {
  grid-row: 2;
}
.item-3 {
  grid-row: 3;
}
.item-4 {
  grid-row: 4;
}
.footer{
  grid-column: 1 / 5;
}

.textA{
  padding-top: 5%;
}
.textB{
  padding-top: 10%;
}
.textC{
  padding-top: 15%;
}