body {
  background-color: black;
}

/* Upper Canvas */
#top-canvas {
  width: 800px;
  height: 60px;
  background-color: black;
  border: 2px solid rgb(255, 0, 0, 0.6);
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translate(-50%, -50%); 
}

/* Botton Canvas */
#canvas1 {
  width: 800px;
  height: 500px;
  border: 1px solid black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
}

/* [WORKS] GitHub Project Link  */
/* [NOTE] can readjust width + height. max = 60x60 px */
#github-canvas {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 7%;
  left: 75%;
  transform: translate(-50%, -50%);
  background-color: rgb(201, 201, 201);
  border-top: 3px solid rgb(201, 201, 201);
  border-bottom: 3px solid rgb(201, 201, 201);
  border-radius: 4px;
}

#github-canvas:hover {
  cursor: pointer;
  background-color: white;
  border-top: 3px solid white;
  border-bottom: 3px solid white;
}

/* [TEST] Bottom Links */

#bottom-text {
  font-family: Helvetica;
  font-size: 16px;
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  /* width: 252px; */
  width: 400px;
  text-align: center;
}

.linkedin-link, .github-link, .angellist-link {
  color: white;
  text-decoration: none;
}

.linkedin-link:hover, .github-link:hover, .angellist-link:hover {
  color: rgb(255, 0, 0, 0.8);
}

.vertical-line {
  color: white;
  font-size: 20px;
  margin-left: 12px;
  margin-right: 12px;
  cursor: default;
}
