#main-content {
  margin-top: 140px;
  width: 100%;
}

#main-content #portfolio-section .box-portfolio {
  position: relative;
  top: 0;
  height: 325px;
  width: 100%;
}

#main-content #portfolio-section img {
  display: flex;
  margin: 0 auto;
  max-width: 300px;
  box-shadow: 2px 2px 5px #06091c;
  z-index: 30;
  transition: 0.5s;
}

#main-content #portfolio-section img:hover {
  position: relative;
  top: 0;
  margin: 0 auto;
  max-width: 500px;
  transition: 0.5s;
}

#main-content #portfolio-section h3 {
  display: flex;
  justify-content: center;
  width: 80%;
  border-radius: 10px;
  font-size: 24px;
  text-align: center;
  color: #06091c;
  margin: 0 auto 30px;
  padding: 25px 0;
}

#main-content #portfolio-section h2 {
  margin-bottom: 80px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 0;
  color: #06091c;
  font-size: 18px;
}

@media (max-width: 930px) {
  #main-content #portfolio-section h3 {
    font-size: 24px;
    flex-wrap: wrap;
  }

  #main-content #portfolio-section h2 {
    margin-bottom: 60px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  #main-content #portfolio-section img {
    display: flex;
    min-width: 200px;
    box-shadow: 2px 2px 5px #06091c;
  }

  #main-content #portfolio-section img:hover {
    display: none;
  }
}