* {
  margin: 0;
  padding: 5px;
}

body {
  font-size: 15px;
  background-image: linear-gradient(
    to right bottom,
    #f9e5bc,
    #e2dbb1,
    #ccd0a8,
    #b7c5a0,
    #a2ba9a,
    #90b095,
    #80a590,
    #719a8b,
    #628e85,
    #54827f,
    #497579,
    #3f6971
  );
  background-color: white;
}

.containerTransparency {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  width: 60vw;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  text-align: justify;
}

#name {
  margin-top: 15px;
  margin-left: 15px;
  font-style: oblique;
}

#pro-pic {
  width: 100%;
  max-width: 200px;
  border-radius: 50%;
}

#intro-mobile {
  display: flex;
  flex-direction: column;
}

.intro-content {
  display: flex;
  flex-direction: row;
}

#name-nav {
  font-size: 1.2rem;
  justify-content: space-between;
}

#introSection {
  justify-content: space-around;
  align-items: center;
  margin: 0 10vw;
}

#aboutSection {
  margin-top: 40px;
  margin-bottom: 30px;
}

.aboutPics img {
  height: 70px;
}

/* .projectLink {
    text-decoration: none;
    color: #F9E5BC;
}

.projectLink:hover {
    color: #3F6971;
} */

.projectLink {
  background-image: linear-gradient(
    to right,
    #3f6971,
    #3f6971 50%,
    #f9e5bc 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

.projectLink:before {
  content: "";
  background: #3f6971;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.projectLink:hover {
  background-position: 0;
}

.projectLink:hover::before {
  width: 100%;
}

.featurette-divider {
  margin: 5rem 0;
  /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05rem;
}

/* responsiveness to port size */
@media (min-width: 40em) {
  .featurette-heading {
    font-size: 40px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}

.footer {
  display: flex;
  /* float: right; */
  justify-content: space-between;
  margin-left: 15px;
  margin-right: 25px;
  margin-bottom: 15px;
}

.signoff {
  font-size: 10px;
  margin-bottom: 7px;
  margin-left: 2px;
  position: fixed;
  bottom: 0;
  background-color: white;
}

/* use rem for fonts to auto-resize when window resizes */