.alphabet-frame {
    max-width: 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  background: url('https://site.mountathos.org/wp-content/uploads/2023/09/link-frame.png') no-repeat center;
  background-size: 120%;
  padding: 60px 40px;
  font-family: 'EB Garamond', serif;
  margin: 0 auto;
}

/* γράμματα */
.alphabet-frame a {
  font-size: 28px;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
  width: 45px; /* ελέγχει το πόσα χωράνε ανά σειρά */
  text-align: center;
}

.alphabet-frame a:hover {
  color: #b45309;
  transform: scale(1.15);
}

/* ομαλή κύλιση */
html {
  scroll-behavior: smooth;
}