html {

  height: 100%;
  width: 100%;
  margin: 0;
  border: 0;
  padding: 0;
}

body {

  height: 100%;
  width: 100%;

  margin: 0;
  border: 0;
  padding: 0;

}

canvas {

  touch-action: none;

  width: 100%;
  max-height: 100%;

  padding: 0;
  margin: 0;
  border: 0;

  min-width: 0;
  min-height: 0;
}

#titleGrd {

    display: grid;
    width: 100%;
    height: 100%;
    grid-template-rows: 80px 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 8px;
    padding-top: 8px;

    justify-content: center;
    align-content: center;
    justify-items: stretch;
    align-items: stretch;
}

#bb1 {
  grid-row: 1;
  grid-column: 1;

  padding: 0;
  margin: 0;
  border: 0;
}

#project-grid-container {

  grid-row: 2;
  grid-column: 1;

  display: flex;
  flex-direction: column;

  justify-content: space-between;
  align-items: center;

  background-color: rgb(105, 97, 97);

  padding: 8px;
}

.stuff {

  width: 100%;
  max-width: 400px;
  height: auto;
}

.stuff2 {

  width: 100%;
  max-width: 480px;
  height: auto;
}

.stuff3 {

  width: 100%;
  max-width: 200px;
  height: auto;
}

#JFGrd {

    display: grid;
    width: 100%;
    height: 100%;
    grid-template-rows: 80px 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 8px;
    padding-top: 8px;
    padding-bottom: 0;

    justify-content: stretch;
    align-content: stretch;
    justify-items: stretch;
    align-items: stretch;
}

#bb2 {
  grid-row: 1;
  grid-column: 1;

  padding: 0;
  margin: 0;
  border: 0;
}

#cnvs {

  grid-row: 2;
  grid-column: 1;
  background-color: rgb(105,97,97);

  padding: 0;
  margin: 0;
  border: 0;


}

@keyframes animateTxt1 {
  0% {fill-opacity:1;}
  40% {fill-opacity:1;}
  50% {fill-opacity:0;}
  90% {fill-opacity:0;}
  100% {fill-opacity:1;}
}

@keyframes animateTxt2 {
  0% {fill-opacity:0;}
  40% {fill-opacity:0;}
  50% {fill-opacity:1;}
  90% {fill-opacity:1;}
  100% {fill-opacity:0;}
}

#Group1 {
  fill-opacity:1;
  animation: animateTxt1 20s linear infinite;
}

#Group2 {
  fill-opacity:0;
  animation: animateTxt2 20s linear infinite;
}
