.main{
  border: 1px solid black;
  background-color: #262626;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  min-height: 100vh;
  background-image: url("kirbybackground.png");
  background-position-x: center;
  background-position-y: center;
}

.header{
  width: 100%;
  min-height: 10vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  border-bottom: 2px solid white;
  margin-bottom: 10px;
  background-color: #c411ff;
}

.header p{
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  color:#fcbdc5;
}

.header a{
  font-size: 40px;
  font-weight: 700;
  text-decoration: none;
  color:#fcbdc5;
}

.body{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  min-height: 80vh;
  width: 70em;
}

.canvas-div{
  position:relative;
  width: 900px;
  height: 600px;
}

canvas{
  position: absolute;
  width: 900px;
  height: 600px;
  cursor:none;
}

.front-canvas{
  z-index: 5;
}

.back-canvas{
  z-index: 2;
}

.mouse-vis-canvas{
  cursor: pointer;
}