body {
  margin: 0;
  padding: 80px;
  position: relative;
  z-index: 1;
  font-family: 'Anonymous Pro', monospace;
  background-color: transparent;
}


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

.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;
}


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

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

/* MAIN CONTENT */
.content {
  display: flex;
  flex-direction: row;
  gap: 180px;
  max-width: 1080px;
  margin: 50px; 
  align-items: flex-start;
}


.photo-hover {
  position: relative;
  width: 450px;
  height: 520px;
  margin-top: -90px;
  margin-left: -60px;
}


.photo-section img {
     width: 450px;
}

/* INTRO TEXT */
.intro {
  max-width: 1080px;
  margin-right: -20px;
  font-size: 20px;
  line-height: 1.4;
}

.imgp{
  max-width: 30%;
}

.dashed-line1 {
  border-top: 1.9px dashed black;
  margin: 40px auto 10px;
  width: 70%;  
  margin-top: 40px;
  margin-bottom: 10px;
}
/* FOOTER */
.footer {
  max-width: 580px;
  margin: 20px auto;
  display: flex;
  justify-content: space-around;
}

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

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


/* HOVER IMAGE EFFECT */


.photo-hover {
  position: relative;
  width: 450px;
  height: 520px;
  margin-top: -90px;
  margin-left: -60px;
} 

.photo-hover img {
  width: 450px;
  height: 520px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease;
}

/* default: show black & white */
.img-bw {
  opacity: 1;
  z-index: 2;
}

/* hide colored */
.img-color {
  opacity: 0;
  z-index: 1;
}

/* on hover: swap */
.photo-hover:hover .img-bw {
  opacity: 0;
}

.photo-hover:hover .img-color {
  opacity: 1;
}


#squares-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

