.sayac {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.sayac .wrapper {
  width: 80%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sayac .wrapper .title {
  transition: all 0.3s;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.sayac .wrapper .title h1 {
  font-family: 'Rubik';
  font-size: 1.8rem;
  text-align: center;
}

.sayac .wrapper .title h2 {
  font-family: 'Nunito';
  font-size: 1.5rem;
  text-align: center;
}

.sayac .wrapper .title h3 {
  font-family: 'UbuntuMono';
  font-size: 1rem;
  text-align: center;
}



.sayac .wrapper .area {
  width: 100%;
  padding: 10px;
  display: flex;
  gap: 30px;
  flex-direction: column;
}


.sayac .wrapper .area .row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.sayac .wrapper .area .row .column {
  aspect-ratio: 1 / 1;
  height: 200px;
  min-width: 150px;
  background-color: lightgrey;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3), 0px 0px 10px rgba(0, 0, 0, 0.3), 0px 0px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sayac .wrapper .area .row .column:nth-child(1) {
  border-radius: 30px 30px 0px 30px;
}

.sayac .wrapper .area .row .column:nth-child(2) {
  border-radius: 30px 30px 30px 0px;
}

.sayac .wrapper .area .row:nth-child(2) .column:nth-child(1) {
  border-radius: 30px 0px 30px 30px;
}

.sayac .wrapper .area .row:nth-child(2) .column:nth-child(2) {
  border-radius: 0px 30px 30px 30px;
}



.sayac .wrapper .area .row .column p:nth-child(1) {
  font-family: "CourierPrime";
  font-size: 1.9rem;
  font-weight: 700;
}

.sayac .wrapper .area .row .column p:nth-child(2) {
  font-family: "NovaSquare";
  font-size: 1.4rem;
}

.sayac .wrapper .buttons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  /* <-- ekle */
  align-items: center;
  /* <-- ekle */
  justify-content: center;
  gap: 20px;
  padding: 10px;
}

.sayac .wrapper .buttons a {
  width: min-content;
  padding: 10px;
  font-family: 'IBMPlex';
  background-color: #37353E;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  color: rgb(225, 225, 225);
  text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.sayac .wrapper .buttons a:hover {
  text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.3), 0px 0px 6px rgba(255, 255, 255, 0.4), 0px 0px 9px rgba(255, 255, 255, 0.4);
}

.sayac .wrapper .buttons a:nth-child(2n+1):last-child {
  grid-column: 1 / -1;
  justify-self: center;
}


.sayac .wrapper .title2 {
  display: flex;
  gap: 20px;
  padding: 10px;
  margin-bottom: 10px;
}

.sayac .wrapper .title2 .part {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3), 0px 0px 6px rgba(0, 0, 0, 0.3), 0px 0px 9px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.sayac .wrapper .title2 .part p {
  font-size: 0.9rem;
  font-weight: 700;
}

.sayac .wrapper .title2 .part p:first-child {
  font-family: "Playwrite";
}

.sayac .wrapper .title2 .part p:last-child {
  font-family: "Merienda";
}

@media(max-width:768px) {
  .sayac .wrapper .buttons {
    grid-template-columns: repeat(1, 1fr);
  }
}


@media(max-width:500px) {
  .sayac .wrapper .title h1 {
    font-size: 1.5rem;
  }

  .sayac .wrapper .title h2 {
    font-size: 1.3rem;
  }

  .sayac .wrapper .title h3 {
    font-size: 0.9rem;
  }

  .sayac .wrapper .area .row {
    flex-direction: column;
  }

  .sayac .wrapper .area .row .column {
    border-radius: 20px !important;
  }

  .sayac .wrapper .area .row .column p:nth-child(1) {
    font-size: 1.8rem;
  }

  .sayac .wrapper .area .row .column p:nth-child(2) {
    font-family: "NovaSquare";
    font-size: 1.3rem;
  }

  .sayac .wrapper .buttons a {
    font-size: 0.8rem;
  }

  .sayac .wrapper .title2 {
    flex-direction: column;
  }
}