html, body {
  margin: 0;
  padding: 0;
}
body {
  width: 100vw;
  height: 100vh;
  background: rgb(237,237,239);
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}
#p5sketch {
  width: 100vw;
  height: 100vh; 
}
.sketchContainer{
  height: 100vh
}
.nameContainer{
  width: 100vw;
  height: 100vh;
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  font-family: sans-serif;
  color: white;
  mix-blend-mode: overlay;
  
}
.contact{
  min-height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}