.yazi{
  margin: 40px auto 20px auto;
  color: #f5f5f5;
  font-size: clamp(26px, 4vw, 34px);
  letter-spacing: 1px;
  text-shadow:
  0 0 2px rgba(255,255,255,0.25);
  text-align: center;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  opacity: 0.92;


}

#service{
    flex-direction: column;
}


#service .row{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}
#service .row .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
    padding: 10px;
    width: 100%;      /* önemli */
    max-width: 250px; /* maksimum boyut */
    height: 400px;
    border-radius: 15px;
}

#service .row .box img{
    width: 249px;
    height: 340px;
    border-radius: 15px;
}

#service .row .box h1{
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
}

#service .row .box a{
    text-decoration: none;
    padding: 11px 15px;
}

#service .row .box h1,
#service .row .box a:hover{
    border-radius: 20px;
    border: 1px solid #747a72;
}


/* TABLET */
@media (max-width: 1024px){
    #service .row{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* TELEFON */
@media (max-width: 600px){
    #service .row{
        grid-template-columns: 1fr;
    }
}