body {
  margin: 0;
  padding: 80px;
  font-family: 'Anonymous Pro', monospace;
}

.pill-button {
  display: inline-block;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  padding: 12px 12px;
  border-radius: 80px;
  border: 1.5px solid #444;
  font-size: 15px;
  text-decoration: none;
  font-family: 'Anonymous Pro', monospace;
  transition: all 0.3s ease;
}

.top-bar {
  a:link{color: black;}
   text-decoration: none;
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 18px;
  margin-top: -30px;
  margin-right: 20px;
  margin-bottom: 60px;
}

/* NAME */
.name {
  text-align: center;
   font-size: 500%;
  letter-spacing: 1px;
  margin-top: -60px;
}

.dashed-line {
  border: none;
  border-top: 1.9px dashed black;
  margin: 40px auto 10px;
  margin-top: -60px;
  margin-bottom: 40px;
}

/* MAIN CONTENT */
/* ===== PAGE LAYOUT ===== */
.page {
  max-width: 1000px;      /* prevents zoomed look */
  margin: 0 auto;        /* center on screen */
  padding: 4px 30px;
}

/* ===== HEADERS ===== */
.name {
  text-align: center;
  margin: 30px 0;
}

/* ===== SECTIONS ===== */
.section {
  margin: 30px 0;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* ===== IMAGES ===== */
.img-bw {
  display: block;
  max-width: 70%;
  margin: 30px auto;
  border-radius: 15px;
}

/* ===== HR ===== */
.dashed-line {
  margin: 40px 0;
}
.content {
  display: block;
  max-width: 1080px;
  margin: 40px auto;
}

#squares-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.section {
  margin: 40px 0;   /* space before and after */
  line-height: 1.6; /* better readability */
}

img.section {
  display: block;
  max-width: 450px;
}

.footer {
  max-width: 580px;
  margin: 20px auto;
  display: flex;
  justify-content: space-around;
}

.footer a {
  text-decoration: none;
  color: black;
}

