body {
  font-family: Helvetica;

  background-color: #ffb1b1;
  color: #ffffff;
}

/*  NAV STYLING BELOW */
.navbar-brand {
  font-weight: bold;
}
.navbar-expand-lg,
.navbar-collapse {
  display: flex;
  justify-content: flex-end;
}
/* END NAV STYLING */

/* MULTIPAGE STYLING */
h2 {
  text-align: center;
}

.card {
  padding: 1em;
}

/* PORTFOLIO STYLING */
img {
  width: 100%;
}
.img-container {
  position: relative;
  display: inline-block;
}
.img-container img {
  display: block;
}
.img-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 60%;
  width: 100%;
  height: 20%;
  opacity: 100%;
  transition: opacity 500ms ease-in-out;
}
.img-container:hover .overlay {
  opacity: 1;
}
.overlay span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
/*  */
#profile-img {
  border-radius: 50%;

  max-width: 200px;
  max-height: 200px;
  float: left;
  object-fit: cover;
}
/* END PORTFOLIO */

/* FORM STYLING */
.bottomBorder {
  border-bottom: 1px solid white;
}

form {
  margin-top: 5%;
  background-color: white;
  padding: 20px;
}

/* FOOTER STYLING */

html,
body {
  height: 100%;
}

#page-content {
  flex: 1 0 auto;
}

#sticky-footer {
  flex-shrink: none;
}

/* MEDIA QUERY */
@media only screen and (max-width: 640px) {
  #profile-img {
    border-radius: 50%;
    float: none;
    width: 100%;
    max-width: none;
    max-height: none;
  }
}

@media only screen and (max-width: 980px) {
  .navbar-expand-lg,
  .navbar-collapse {
    display: flex;
    justify-content: flex-start;
  }
}
