.title-field {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;

  width: 90%;
  height: 100vh;
}

.title-field .title {
  color: var(--theme-color);
  font-size: 20px;
}

.title-field .subtitle {
  text-align: center;
  margin-top: 10px;
  font-size: 30px;
  margin-bottom: 40px;
  line-height: 52px;
}

.down {
  position: absolute;
  bottom: 90px;
}

.down:hover {
  animation: arrowAnimation;
  animation-duration: 0.5s;
}

@keyframes arrowAnimation {
  0%{
    bottom: 90px;
  }
  50%{
    bottom: 85px;
  }
  100%{
    bottom: 90px;
  }
}

.down img {
  width: 30px;
}

.selected-works-title {
  scroll-margin-top: 60px;
  letter-spacing: 1px;
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px solid;
}

.selected-works {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  width: 90%;
  margin-top: 20px;
}

.image-link {
  margin-bottom: 50px;
}

.image-link img {
  width: 150px;
}

.modahayat {
  width: 100px !important;
}

.studio {
  width: 100px !important;
}

@media(min-width:600px){
  .title-field {
  }
  
  .title-field .title {
    font-size: 22px;
  }
  
  .title-field .subtitle {
    width: 800px;
    font-size: 48px;
    line-height: 70px;
    margin-bottom: 120px;
  }

  .down img{
    width: 50px;
  }
  
  .selected-works-title {
    font-size: 22px;
    margin-bottom: 40px;
  }
  
  .selected-works {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  
    width: 1000px;
    margin-top: 50px;
  }

  .image-link {
    margin-bottom: 120px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-link img {
    width: auto;
    transition: 0.2s;
  }

  .image-link img:hover{
    transform: scale(1.1); /* Equal to scaleX(0.7) scaleY(0.7) */
  }
  
}