* {
  margin: 0;
  padding: 0;
}

h1.title {
  background-color: rgb(23 37 84);
  line-height: 2rem;
  text-align: center;
  font-size: 1.5rem;
}

h1.title span {
  color: white;
  font-style: italic;
  font-weight: 800;
}

h1.title a {
  font-style: none;
  text-decoration: none;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 5px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* A slightly more refined modern font */
}

div.big-page-buttons {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

ul.big-page-buttons {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.big-page-buttons li {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow for lift */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.big-page-buttons li:hover {
  transform: translateY(-5px); /* Lift up on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.big-page-buttons a {
  display: flex;
  text-decoration: none;
  color: black;
  font-size: 1.4em;
  font-weight: 600;
  padding: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.big-page-buttons img {
  width: 100%;
  height: 100%;
  max-height: 120px;
  max-width: 120px;
  object-fit: contain;
}

