/* Parallax */
.parallax {
  min-height: 100vh;
  position: relative;
}

.parallax:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}

.parallax-content {
  padding: 25vh 0;
}

/* Sections */
#cv-bio, #academic-work, #contact, #blog {
  background-size: cover;
}

.content {
  margin: auto;
  width: 80%;
  text-align: left;
}

/* Text Box */
.text-box {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  margin: 0 auto;
  border-radius: 5px;
  color: #ffffff;
  max-width: 800px;
  width: 100%;
}

.text-box a {
  color: #ffd700;
}
