body {
  font-family: 'Montserrat', sans-serif;
  /* font-family: 'Playfair Display', serif; */
}
#photoMe {
    /* border-radius: 250px; */
    border-radius: 20em 20em 20em 20em;
  }
  .third-of-width {
    width: 80%;
   }

   .image-item {
    position: relative;
    cursor: pointer;
  }
  .image-wrap {
    position: relative;
    cursor: pointer;
  }
  .photoIcon {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
 /* overlay styles */
  
 .image-item {
  position: relative;
  cursor: pointer;
}
.image-wrap {
  position: relative;
  cursor: pointer;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.502);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.2s 0.1s ease-in-out;
  color: #fff;
  /* center overlay content */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover */
.image-wrap:hover .overlay {
  transform: scale(1);
}
.image-item:hover .overlay {
  transform: scale(1);
}

.photoIcon {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

   #submitForm {
 border: 2px solid gray;
 border-radius: 1em;
   }

   #exampleFormControlInput1 , #exampleFormControlInput2 {
    background-color: transparent;
    border: transparent;
    border-radius: 0;
    border-bottom: 1px solid rgb(149, 148, 148);
    color:whitesmoke;
  }
 
  
  #exampleFormControlTextarea1{
    background-color: transparent;
    border: transparent;
    border-radius: 0;
    border-bottom: 1px solid rgb(149, 148, 148);
    color: whitesmoke;
  }

  #contactLeft {
    background: url(/icons/watercolor\ stain2.png); 
    background-size: contain; 
    background-position: start center; 
     background-repeat:no-repeat; 
  }

   @media (max-width: 768px) {
    #contactSection{
        display: flex;
        flex-direction: column;
      }

      .nodisplay {
        display: none;
      }

    .third-of-width{
      width: 100%
    }
    #photoMe {
      width:100%;
      height: auto;
      
    }
    #contactLeft {
      background: none;
    }
  
  }